Update version #119
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: macos | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
latest: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Show env | |
run: | | |
uname -a | |
- name: Install | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable | |
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
- name: Build | |
run: sudo -E $HOME/.cargo/bin/cargo build --verbose | |
- name: Run tests | |
run: | | |
export RUST_BACKTRACE=1 | |
sudo -E $HOME/.cargo/bin/cargo test --verbose |