rust_minifb/.github/workflows/ci.yml

31 lines
665 B
YAML
Raw Normal View History

on: [push, pull_request]
name: CI
jobs:
build_and_test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: cargo fetch
uses: actions-rs/cargo@v1
with:
command: fetch
- name: cargo test build
uses: actions-rs/cargo@v1
with:
command: build
args: --tests
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test