mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 00:15:59 +01:00
21 lines
303 B
YAML
21 lines
303 B
YAML
name: Check PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
|
|
|
|
jobs:
|
|
check-pr:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build
|
|
run: ./buildandtest
|
|
|