Skip to content

Instantly share code, notes, and snippets.

@wolverian
Created February 6, 2021 10:06
Show Gist options
  • Save wolverian/95fef018741ef0fcec66107d1c28e8aa to your computer and use it in GitHub Desktop.
Save wolverian/95fef018741ef0fcec66107d1c28e8aa to your computer and use it in GitHub Desktop.
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache
uses: Swatinem/rust-cache@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment