Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backports for 1.2 #698

Merged
merged 11 commits into from
Jul 13, 2023
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ on:
name: CI

jobs:
check-commit-style:
name: Check Commit Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: webiny/action-conventional-commits@v1.1.0

typos:
name: Typos
runs-on: ubuntu-latest
Expand Down Expand Up @@ -76,7 +83,7 @@ jobs:
arch: [x86_64]
# Don't fail the whole workflow if one architecture fails
fail-fast: false
needs: [typos, rustfmt, clippy]
needs: [check-commit-style, typos, rustfmt, clippy]
steps:
- uses: actions/checkout@v3
# Docker is required by the docker/setup-qemu-action which enables emulation
Expand Down
Loading
Loading