nested-lookup/.forgejo/workflows/ci.yml
russell 8958ac8dab
Some checks failed
ci / test (push) Failing after 38s
ci: pip install six + pytest before make test
2026-06-22 09:38:43 -04:00

18 lines
419 B
YAML

name: ci
on:
push:
branches: [master, main]
jobs:
test:
runs-on: [self-hosted, linux, docker]
container: catthehacker/ubuntu:act-22.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: install runtime deps
run: |
apt-get update -qq
apt-get install -y -qq python3-venv
pip install six pytest
- name: test
run: make test