Created
October 9, 2019 20:38
-
-
Save damienstanton/6917895c97bc059db32b6f34ad3c57c0 to your computer and use it in GitHub Desktop.
Rust GH workflow
This file contains hidden or 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] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: cargo build --verbose --release | |
- name: Run tests | |
run: cargo test --verbose --all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment