Skip to content

Instantly share code, notes, and snippets.

@damienstanton
Created October 9, 2019 20:38
Show Gist options
  • Save damienstanton/6917895c97bc059db32b6f34ad3c57c0 to your computer and use it in GitHub Desktop.
Save damienstanton/6917895c97bc059db32b6f34ad3c57c0 to your computer and use it in GitHub Desktop.
Rust GH workflow
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