chore: Updates thiserror and fixes cargo deny #453
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: Build and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/[email protected] | |
- uses: engineerd/[email protected] | |
with: | |
name: just | |
url: https://github.com/casey/just/releases/download/0.10.2/just-0.10.2-x86_64-unknown-linux-musl.tar.gz | |
pathInArchive: just | |
- name: Build | |
run: | | |
just build | |
just test | |
windows-build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
# For some reason, running with the default powershell doesn't work with the `Build` step, | |
# but bash does! | |
shell: bash | |
steps: | |
- uses: actions/[email protected] | |
- uses: engineerd/[email protected] | |
with: | |
name: just | |
url: "https://github.com/casey/just/releases/download/0.10.2/just-0.10.2-x86_64-pc-windows-msvc.zip" | |
pathInArchive: just.exe | |
- name: Build | |
run: | | |
just --justfile justfile-windows build | |
just --justfile justfile-windows test | |
cargo-deny: | |
name: Run cargo deny | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
checks: | |
- advisories | |
- bans licenses sources | |
steps: | |
- uses: actions/[email protected] | |
- uses: EmbarkStudios/cargo-deny-action@v2 | |
with: | |
command: check ${{ matrix.checks }} |