Skip to content

Commit

Permalink
ci: add github Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
guidoschmidt committed Oct 7, 2024
1 parent e8b306e commit 80c9bed
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [main, feature/tokamak]
pull_request:
branches: [main]

jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v2

- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: master

- name: Build
run: |
zig build

0 comments on commit 80c9bed

Please sign in to comment.