diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54aff88..363fc5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,4 @@ # Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md -# -# While our "example" application has the platform-specific code, -# for simplicity we are compiling and testing everything on the Ubuntu environment only. -# For multi-OS testing see the `cross.yml` workflow. - on: [push, pull_request] name: test @@ -25,7 +20,6 @@ jobs: - name: Run cargo check uses: actions-rs/cargo@v1 - continue-on-error: true # WARNING: only for this example, remove it! with: command: check @@ -45,7 +39,6 @@ jobs: - name: Run cargo test uses: actions-rs/cargo@v1 - continue-on-error: true # WARNING: only for this example, remove it! with: command: test @@ -66,14 +59,12 @@ jobs: - name: Run cargo fmt uses: actions-rs/cargo@v1 - continue-on-error: true # WARNING: only for this example, remove it! with: command: fmt args: --all -- --check - name: Run cargo clippy uses: actions-rs/cargo@v1 - continue-on-error: true # WARNING: only for this example, remove it! with: command: clippy args: -- -D warnings