watchexec/.github/workflows/main.yml

33 lines
546 B
YAML
Raw Normal View History

2022-05-30 05:07:21 +02:00
name: Main branch
on:
push:
branches:
- main
tags-ignore:
- "*"
2022-05-30 05:07:21 +02:00
jobs:
check:
strategy:
matrix:
platform:
- ubuntu
- windows
- macos
name: Check on ${{ matrix.platform }}
runs-on: "${{ matrix.platform }}-latest"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check