lox/.gitea/workflows/build.yaml
adnangonzaga 2ab60082dc
Some checks failed
build / test (push) Failing after 3s
[CICD] - Fixing typo on build.yaml
2024-11-23 23:48:09 +00:00

11 lines
204 B
YAML

name: build
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker run -v $PWD:/src nix-runner 'nix shell --run "cd /src/clox && make"'