Skip to content

Commit

Permalink
Merge pull request #7 from Quaint-Studios/zig-migration
Browse files Browse the repository at this point in the history
Zig migration
  • Loading branch information
Makosai authored Aug 14, 2024
2 parents 2a60d1b + 994d4ff commit 49f27a2
Show file tree
Hide file tree
Showing 67 changed files with 454 additions and 5,830 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/sustenet-dotnet-core.yml

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/sustenet-zig.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Sustenet (Zig)

on:
push:
branches: [master]
pull_request:
branches: [master]

env:
VERSION: 0.13.0

jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{env.VERSION}}
- run: zig build test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{env.VERSION}}
- run: zig fmt --check .
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{env.VERSION}}
- run: zig build
Loading

0 comments on commit 49f27a2

Please sign in to comment.