convert submodules to normal folders for now
This commit is contained in:
parent
389e934900
commit
ed1e0ecb6b
1041 changed files with 572002 additions and 13 deletions
36
znoise/.github/workflows/main.yml
vendored
Normal file
36
znoise/.github/workflows/main.yml
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
name: ci
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
concurrency:
|
||||
# Cancels pending runs when a PR gets updated.
|
||||
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
lint-and-build-and-test:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
runs-on: ${{matrix.os}}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
- name: Read .zig-version
|
||||
id: zigversion
|
||||
uses: juliangruber/read-file-action@v1
|
||||
with:
|
||||
path: ./.zigversion
|
||||
- name: Install Zig
|
||||
uses: mlugg/setup-zig@v1
|
||||
with:
|
||||
version: ${{ steps.zigversion.outputs.content }}
|
||||
- name: Check format
|
||||
continue-on-error: true
|
||||
run: zig fmt --check .
|
||||
- name: Build and run tests
|
||||
run: zig build test
|
||||
Loading…
Add table
Add a link
Reference in a new issue