book: Include ashpd only on linux so that listings run on macos #213
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: listings | |
on: | |
pull_request: | |
paths: | |
- "book/listings/**" | |
push: | |
branches: | |
- "master" | |
paths: | |
- "book/listings/**" | |
release: | |
types: [published] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: listings build | |
container: | |
image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- run: cargo build | |
name: "Build" | |
working-directory: book/listings | |
- run: cargo clippy | |
name: "Clippy" | |
working-directory: book/listings | |
- run: cargo fmt --check | |
name: "Format" | |
working-directory: book/listings |