mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-14 05:40:47 -05:00
added eowyn build for running against master every day
This commit is contained in:
parent
35e99e625d
commit
5f3af7fb97
1 changed files with 25 additions and 0 deletions
25
.github/workflows/eowyn.yml
vendored
Normal file
25
.github/workflows/eowyn.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: Eowyn
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Setup Zig
|
||||||
|
uses: goto-bus-stop/setup-zig@v1.3.0
|
||||||
|
with:
|
||||||
|
version: master
|
||||||
|
|
||||||
|
- run: patches/eowyn.sh
|
Loading…
Reference in a new issue