25 lines
598 B
YAML
25 lines
598 B
YAML
---
|
|
name: "Test"
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
{}
|
|
# pull_request:
|
|
# push:
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: https://github.com/cachix/install-nix-action@v18
|
|
# - uses: https://github.com/cachix/cachix-action@v12
|
|
# with:
|
|
# name: ytdl-web
|
|
# extraPullNames: devenv
|
|
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- name: Install devenv.sh
|
|
run: nix-env -if https://github.com/cachix/devenv/tarball/main
|
|
- run: devenv shell echo ok
|
|
- run: devenv ci
|