diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-03-12 20:13:18 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-03-12 20:13:18 -0500 |
commit | 097db5835b6cd9240b3c26ad609a232460c5271b (patch) | |
tree | 6236fe8a011e92f5d7fb0fb74d5787473f594827 /.github | |
parent | 83e235cf1bf87ec00af67d0d3ab63ba9cc329344 (diff) | |
parent | 9de772c74d71e24187b7f3cc183ed8f53dfee374 (diff) | |
download | ziglings-097db5835b6cd9240b3c26ad609a232460c5271b.tar.gz ziglings-097db5835b6cd9240b3c26ad609a232460c5271b.tar.bz2 ziglings-097db5835b6cd9240b3c26ad609a232460c5271b.tar.xz ziglings-097db5835b6cd9240b3c26ad609a232460c5271b.zip |
Merge branch 'mattnite-ci' into main
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 |