summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/eowyn.yml
diff options
context:
space:
mode:
authorManlio Perillo <manlio.perillo@gmail.com>2023-04-29 16:22:52 +0200
committerManlio Perillo <manlio.perillo@gmail.com>2023-04-29 16:22:52 +0200
commit93e8b5710c12170271d63bc4a9eb49f3605f02d0 (patch)
tree910d426aa94a0d44d0086c2032c17d17f4fc573f /.github/workflows/eowyn.yml
parentedeca973700bcd2f2853d74b7ba5a1526bbca905 (diff)
workflows: remove the custom windows only jobs
Restore the job matrix to run on linux, macos and windows. Remove lines with extra whitespace. Improve the documentation of the Eowyn workflow. Remove the single quoting of the workflow names.
Diffstat (limited to '.github/workflows/eowyn.yml')
-rw-r--r--.github/workflows/eowyn.yml27
1 files changed, 6 insertions, 21 deletions
diff --git a/.github/workflows/eowyn.yml b/.github/workflows/eowyn.yml
index 8128832..3ac48f7 100644
--- a/.github/workflows/eowyn.yml
+++ b/.github/workflows/eowyn.yml
@@ -1,5 +1,5 @@
-name: 'Eowyn'
-# Tests all exercises
+# Test that exercises work with the latest Zig compiler.
+name: Eowyn
on:
pull_request:
@@ -13,35 +13,20 @@ defaults:
shell: bash
jobs:
- build-linux_mac:
+ build:
strategy:
matrix:
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v3
-
- - name: Setup Zig
- uses: goto-bus-stop/setup-zig@v2
- with:
- version: master
-
- - name: Run Eowyn
- run: patches/eowyn.sh
-
- build-windows:
- runs-on: windows-latest
- timeout-minutes: 30
- steps:
- - name: Checkout
- uses: actions/checkout@v3
-
+
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: master
-
+
- name: Run Eowyn
run: patches/eowyn.sh