mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
34 lines
576 B
YAML
34 lines
576 B
YAML
|
name: Main branch
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
tags-ignore:
|
||
|
- "cli-v*.*.*"
|
||
|
- "lib-v*.*.*"
|
||
|
|
||
|
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
|
||
|
|