diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..56684d5 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +--- +name: Rust + +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: Rust Format + run: cargo fmt --all -- --check + - name: Build + run: cargo build --verbose + - name: Clippy + run: cargo clippy -- -D warnings + - name: Run tests + run: cargo test --verbose