mirror of
https://github.com/BloopAI/setup-zig.git
synced 2026-08-26 12:48:34 +00:00
* deps: use esbuild * deps: update tool-cache * Fix tool-cache usage (#45) * cache log * log * log * use resolved ver for cache * build * log cache * log * use version as key * deps * loggggggg * method name * improve log * ci: tweak versions * include version for commit deps * trailing * mistake * Use github cache (#53) * Cache the zig compiler locally * logging * npm update * verboser * os.arch * debug * log signal * address https://github.com/actions/toolkit/issues/687 * correct path * add a cache: false option * share size * zigpath * path.join skull * target node12 * changelog: add 1.4.0
35 lines
830 B
YAML
35 lines
830 B
YAML
name: CI
|
|
on: push
|
|
jobs:
|
|
test:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Run tests
|
|
run: npm test
|
|
|
|
smoke-test:
|
|
name: Build test
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
zig-version: [0.7.0, 0.8.0, 0.9.0, 0.10.0]
|
|
include:
|
|
- os: ubuntu-latest
|
|
zig-version: 0.5.0
|
|
runs-on: ${{matrix.os}}
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Install Zig
|
|
uses: goto-bus-stop/setup-zig@default
|
|
with:
|
|
version: ${{matrix.zig-version}}
|
|
- name: Run tests
|
|
run: zig build test
|
|
working-directory: test
|