1
0
mirror of https://github.com/mre/mos6502.git synced 2024-07-05 11:28:57 +00:00
mre-mos6502/.github/workflows/continuous_testing.yaml
2019-10-22 09:44:18 +09:00

22 lines
453 B
YAML

name: test
on: push
jobs:
build_and_test:
name: test
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Install cargo
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run test
uses: actions-rs/cargo@v1
with:
command: test