Bump clap from 4.5.16 to 4.5.17 #14
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 πͺ | |
on: | |
pull_request: | |
push: | |
paths: | |
- 'src/**' | |
- '.github/workflows/build.yml' | |
branches: | |
- '**' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build the binary | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: 1.80.1 | |
targets: x86_64-unknown-linux-musl | |
- name: Setup dependencies | |
run: | | |
sudo apt-get -qq install musl-dev musl-tools pkg-config make | |
- name: Run build | |
run: cargo build --release --locked --target x86_64-unknown-linux-musl |