update bincode usage #38
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
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
name: Test | |
jobs: | |
build_and_test: | |
name: Test | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: clippy | |
- run: cargo run -- -s demos/hello.cirru | |
- run: cargo run -- -s demos/sum.cirru | |
- run: cargo run -- -s demos/assert.cirru | |
- run: cargo run -- -s demos/nested.cirru | |
- run: cargo run -- -s demos/named.cirru | |
- run: cargo run -- demos/recur.cirru | |
- run: cargo run -- --emit-binary target/a.calx demos/named.cirru && cargo run -- --eval-binary target/a.calx | |
- uses: giraffate/clippy-action@v1 | |
with: | |
reporter: 'github-pr-review' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |