diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 0000000..8fb45af --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,25 @@ +name: integration + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + integration: + runs-on: "macos-latest" + + steps: + - uses: actions/checkout@v4 + - name: Ensure `cargo fmt` was run + run: cargo fmt --check + #- name: Ensure `cargo clippy` is satisfied + #run: cargo clippy + - name: Build + run: cargo build + #- name: Test + #run: cargo test