-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
81 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: CI - Zignal | ||
|
||
on: | ||
push: | ||
paths: | ||
- ".github/workflows/ci.yml" | ||
- "**.zig" | ||
- "**.zon" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/ci.yml" | ||
- "**.zig" | ||
- "**.zon" | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
include: | ||
- zig-version: master | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Grab Zig | ||
uses: goto-bus-stop/setup-zig@v2 | ||
with: | ||
version: ${{ matrix.zig-version }} | ||
|
||
- name: Native modules | ||
run: | | ||
make native | ||
- name: Linux modules | ||
run: | | ||
make linux | ||
- name: macOS modules | ||
run: | | ||
make macos | ||
- name: Windows modules | ||
run: | | ||
make windows | ||
- name: WebAssembly modules | ||
run: | | ||
make wasm | ||
- name: Tests master | ||
run: | | ||
make test |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Zignal Examples</title> | ||
<link rel="stylesheet" href="./style.css"> | ||
<link rel="icon" href="./favicon.ico" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<main> | ||
<h1>Zignal Examples</h1> | ||
</main> | ||
<script src="index.js"></script> | ||
</body> | ||
</html> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(function () { | ||
})(); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|