deps: Bump versions of dependencies #472
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 | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: build and check | |
run: make check | |
- name: smoke | |
run: | | |
echo user_allow_other | sudo tee --append /etc/fuse.conf | |
make smoke-all | |
Macos-CI: | |
runs-on: macos-latest | |
steps: | |
- name: Install macfuse | |
run: brew install --cask macfuse | |
- uses: actions/checkout@v3 | |
- name: build and check | |
run: make check-macos | |
deny: | |
name: Cargo Deny | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: EmbarkStudios/cargo-deny-action@v1 |