mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 08:25:59 +01:00
Compare commits
1 Commits
v1.1
...
github-wor
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5bcc26d15e |
28
.github/workflows/build.yaml
vendored
Normal file
28
.github/workflows/build.yaml
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
name: Checks
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
windows:
|
||||||
|
name: run on windows
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ilammy/msvc-dev-cmd@v1.4.1
|
||||||
|
- name: compile
|
||||||
|
run: |
|
||||||
|
dir /s /b /o:gn
|
||||||
|
mac-and-ubuntu:
|
||||||
|
runs-on: ${{matrix.os}}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [macos-latest, ubuntu-latest]
|
||||||
|
name: ${{matrix.os}}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: compile
|
||||||
|
run: |
|
||||||
|
./buildandtest
|
||||||
Reference in New Issue
Block a user