lox/.gitea/workflows/build.yaml
adnanioricce f2128a9512
Some checks failed
build / test (push) Has been cancelled
[CICD] - Adding gitea pipeline to build clox
2024-11-23 20:06:04 -03:00

17 lines
368 B
YAML

name: build
on:
push:
jobs:
test:
runs-on: nix-runner
steps:
# optional: Push the results to a cache
- uses: https://github.com/cachix/cachix-action@v12
with:
name: local-cache
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/checkout@v3
- run: nix shell --run "cd clox && make"