diff options
| author | 2021-12-29 12:05:23 +0100 | |
|---|---|---|
| committer | 2021-12-29 12:05:23 +0100 | |
| commit | 802a04a854e65254b0632d9785b2b0f6154686b8 (patch) | |
| tree | 777e3b3a9b368b281b95bfef9c78c5a1b6d931e5 /.github/workflows/main.yml | |
| parent | Tag 0.5.0 (diff) | |
| download | zig-clap-802a04a854e65254b0632d9785b2b0f6154686b8.tar.gz zig-clap-802a04a854e65254b0632d9785b2b0f6154686b8.tar.xz zig-clap-802a04a854e65254b0632d9785b2b0f6154686b8.zip | |
Update usage of process.ArgIterator to be inline with newest zig
Also add windows CI, as this compiler error was only triggered on
windows builds
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f6e216..8685d1b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml | |||
| @@ -7,7 +7,10 @@ on: | |||
| 7 | 7 | ||
| 8 | jobs: | 8 | jobs: |
| 9 | test: | 9 | test: |
| 10 | runs-on: ubuntu-latest | 10 | strategy: |
| 11 | matrix: | ||
| 12 | os: [ubuntu-latest, windows-latest] | ||
| 13 | runs-on: ${{matrix.os}} | ||
| 11 | steps: | 14 | steps: |
| 12 | - uses: actions/checkout@v2.4.0 | 15 | - uses: actions/checkout@v2.4.0 |
| 13 | with: | 16 | with: |