Update bindgen requirement from 0.69 to 0.70 #7
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: Rust CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install libcdio | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libcdio-dev libiso9660-dev libudf-dev | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo build --workspace --all-targets | |
semver-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install libcdio | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libcdio-dev libiso9660-dev libudf-dev | |
- name: Check semver | |
uses: obi1kenobi/cargo-semver-checks-action@v2 |