chore: introduce github actions CI #8
Workflow file for this run
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: Continuous Integration | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: ["*"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build on ${{ matrix.environments.runner }} with target ${{ matrix.environments.target }} | |
strategy: | |
fail-fast: false | |
matrix: | |
environments: | |
- runner: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
- runner: ubuntu-latest | |
target: wasm32-unknown-unknown | |
optional: true | |
- runner: macos-latest | |
target: aarch64-apple-darwin | |
timeout-minutes: 30 | |
runs-on: ${{ matrix.environments.runner }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Check format | |
run: cargo fmt --all -- --check | |
- name: Run clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- run: rustup target add ${{ matrix.environments.target }} | |
- name: Run tests | |
run: | | |
cargo test --locked --all-features --workspace --target ${{ matrix.environments.target }} | |
exitcode="$?" | |
if [[ "${{ matrix.environments.optional }}" == "true" && "$exitcode" != "0" ]] ; then | |
# Propagate failure as a warning | |
# but do not fail the job | |
echo "::warning::Tests failed with exit code $exitcode" | |
exit 0 | |
fi |