28 lines
418 B
YAML
28 lines
418 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 1 * *' # Monthly
|
|
|
|
env:
|
|
SLIGRO_USERNAME: ${{ secrets.SLIGRO_USERNAME }}
|
|
SLIGRO_PASSWORD: ${{ secrets.SLIGRO_PASSWORD }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: nix develop --command {0}
|
|
|
|
jobs:
|
|
|
|
test:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Populate /nix/store
|
|
run: echo done
|
|
|
|
- run: pytest
|
|
- run: ruff check
|