diff options
author | Matt Knight <mattnite@protonmail.com> | 2021-03-06 15:15:26 -0800 |
---|---|---|
committer | Matt Knight <mattnite@protonmail.com> | 2021-03-06 15:15:26 -0800 |
commit | a78e39a73a0be6eabf587a813ecdb0d9ba8c00d1 (patch) | |
tree | 757bb8a76f834c148383f1380e3b276b9d548069 /.github | |
parent | 7573ea4843648df111cebdca799ee721d8455217 (diff) | |
download | ziglings-a78e39a73a0be6eabf587a813ecdb0d9ba8c00d1.tar.gz ziglings-a78e39a73a0be6eabf587a813ecdb0d9ba8c00d1.tar.bz2 ziglings-a78e39a73a0be6eabf587a813ecdb0d9ba8c00d1.tar.xz ziglings-a78e39a73a0be6eabf587a813ecdb0d9ba8c00d1.zip |
added eowyn build for running against master every day
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/eowyn.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/eowyn.yml b/.github/workflows/eowyn.yml new file mode 100644 index 0000000..9a422b6 --- /dev/null +++ b/.github/workflows/eowyn.yml @@ -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 |