10000 Test on Windows as well · aegis-aead/libaegis@906a544 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Test on Windows as well #3

Test on Windows as well

Test on Windows as well #3

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Zig
uses: mlugg/setup-zig@v1
- name: Unit tests
run: |
zig build test
zig build test -Drelease
0