Add environment variable abstraction #1274
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- tmp | |
pull_request: | |
paths: | |
- '**.zig' | |
- '**.c' | |
- '**.h' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: master | |
- name: Build | |
run: zig build | |
- name: Build 32-bit | |
run: zig build -Dtarget=arm-linux | |
if: matrix.os == 'ubuntu-latest' | |
- name: Fmt | |
run: zig fmt . --check | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run Tests | |
run: zig build test |