17 lines
342 B
YAML
17 lines
342 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- run: |
|
|
apt update
|
|
apt install python3
|
|
|
|
- uses: https://github.com/cachix/install-nix-action@v27
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- run: nix develop
|