feat: Add Context
enum and semaphore
field
#41
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: Project Serpens CI (Lint & Test) | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
jobs: | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Run rustfmt | |
run: cargo fmt --all -- --check --verbose | |
clippy: | |
name: clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Run Clippy | |
run: cargo clippy --all-targets --all-features | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
needs: [ rustfmt, clippy ] | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
toolchain: | |
- "stable" | |
- "nightly" | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install nightly toolchain | |
if: matrix.toolchain == 'nightly' | |
run: rustup toolchain install nightly | |
- name: Build | |
run: cargo +${{ matrix.toolchain }} build --all --no-default-features --all-features | |
- name: Test | |
run: cargo +${{ matrix.toolchain }} test --all --no-default-features --all-features |