ziglings/.github/workflows/eowyn.yml
Manlio Perillo 93e8b5710c 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.
2023-04-29 16:22:52 +02:00

32 lines
589 B
YAML

# Test that exercises work with the latest Zig compiler.
name: Eowyn
on:
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
build:
strategy:
matrix:
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