Skip to content

Parallel release builds + build and run tests under CI for PRs #1

Parallel release builds + build and run tests under CI for PRs

Parallel release builds + build and run tests under CI for PRs #1

Workflow file for this run

name: "Pull Request CI"
on:
pull_request:
types: [opened, synchronize]
permissions:
contents: write
jobs:
build-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Zig
uses: goto-bus-stop/[email protected]
with:
version: 0.12.0-dev.790+ad6f8e3a5
- name: Build
run: zig build release -Doptimize=Debug
- name: Test
run: zig build test