2025-06-03 14:34:20 +02:00
|
|
|
name: CI
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
jobs:
|
2025-06-03 14:42:35 +02:00
|
|
|
ci:
|
2025-06-03 14:34:20 +02:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
|
|
|
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Set up Nix
|
|
|
|
uses: https://guardianproject.dev/actions/install-nix-action@v31
|
|
|
|
|
|
|
|
- name: Run CI
|
|
|
|
run: nix develop --command make ci
|