Skip to content

feat(docs): add readme instructions #22

feat(docs): add readme instructions

feat(docs): add readme instructions #22

Workflow file for this run

name: Kubecraft-proxy CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install clippy
run: rustup component add clippy
- name: Install rustfmt
run: rustup component add rustfmt
- name: Get dependencies cache
uses: Swatinem/rust-cache@v2
- name: Build
run: make build
- name: Lint
run: make lint
- name: Format
run: make format
- name: Tests
run: make check