diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da65db37..bf865452 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ concurrency: jobs: format: - name: "Format" + name: Format runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -34,7 +34,7 @@ jobs: run: cargo fmt --all -- --check doc: - name: "Documentation" + name: Documentation runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -70,7 +70,7 @@ jobs: target/doc/rquickjs-sys target/doc/rquickjs-macro check: - name: "Clippy check" + name: Clippy check runs-on: ubuntu-latest permissions: checks: write @@ -98,7 +98,7 @@ jobs: run: cargo clippy --all --all-targets --features full-async msrv: - name: "Minimal rust version" + name: Minimal rust version # Check to see if rquickjs builds on minimal supported Rust version. runs-on: ubuntu-latest # we use a matrix here just because env can't be used in job names @@ -119,7 +119,7 @@ jobs: run: cargo check coverage: - name: "Test + Converage" + name: Test + Converage runs-on: ubuntu-latest steps: - uses: dtolnay/rust-toolchain@v1 @@ -154,7 +154,7 @@ jobs: retention-days: 5 test: - name: "Platform tests" + name: Platform tests needs: - format - doc @@ -427,7 +427,7 @@ jobs: results: if: ${{ always() }} runs-on: ubuntu-latest - name: All platform test results + name: Platform test results needs: [test] steps: - run: exit 1 @@ -438,6 +438,7 @@ jobs: }} update-bindings: + name: Update bindings if: ${{ github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/') }} needs: - test