update dependencies #350
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, pull_request] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Prepare | |
run: sudo apt-get install -y libdbus-1-dev pkg-config | |
- name: Build | |
run: cargo build --verbose --features linux_eventfd | |
- name: Run tests | |
run: cargo test --verbose --features linux_eventfd | |
- name: Get freebsd toolchain | |
run: rustup target add x86_64-unknown-freebsd | |
- name: Check freebsd | |
run: cargo check --target x86_64-unknown-freebsd | |