20 lines
313 B
YAML
20 lines
313 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Zig
|
|
run: |
|
|
sudo apt-get install snapd
|
|
snap install zig --classic --beta
|
|
|
|
- name: Run tests
|
|
run: zig build test
|