Try fix ci #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
pull_request: | ||
# Only run on the latest ref | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Setup Rust | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: stable | ||
components: clippy, rustfmt | ||
- name: Format | ||
run: cargo fmt --all -- --check | ||
- name: Clippy | ||
run: cargo clippy --all-targets --all-features -- -D warnings | ||
build: | ||
needs: | ||
- check | ||
strategy: | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
platform: linux | ||
arch: x86_64 | ||
toolchain: stable | ||
- os: macos-latest | ||
platform: darwin | ||
arch: x86_64 | ||
toolchain: stable | ||
- os: windows-latest | ||
platform: windows | ||
arch: x86_64 | ||
toolchain: stable-x86_64-pc-windows-gnu | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
os: ${{ matrix.os }} | ||
platform: ${{ matrix.platform }} | ||
arch: ${{ matrix.arch }} |