Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

jobs:
linux:
build:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
Expand All @@ -30,11 +30,11 @@ jobs:
target: aarch64-apple-darwin
build_profile: ["release"]
steps:
- name: Output rust version for educational purposes
- uses: actions/checkout@v4
- name: Build
run: |
rustup --version
cargo --version
- name: Build
run: cargo build --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }}
cargo build --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }}
- name: Test
run: cargo test --frozen --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }}