diff options
| author | Matt Knight <[email protected]> | 2021-03-06 15:15:26 -0800 |
|---|---|---|
| committer | Matt Knight <[email protected]> | 2021-03-06 15:15:26 -0800 |
| commit | 5f3af7fb9780627f2f88dfb8cd63889786473748 (patch) | |
| tree | 757bb8a76f834c148383f1380e3b276b9d548069 /.github | |
| parent | 35e99e625d4ce0c235ecb6e9b12d468a41ae3517 (diff) | |
| download | ziglings-5f3af7fb9780627f2f88dfb8cd63889786473748.tar.xz ziglings-5f3af7fb9780627f2f88dfb8cd63889786473748.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/[email protected] + with: + version: master + + - run: patches/eowyn.sh |
