nested-lookup/.forgejo/workflows/ci.yml
russell e3141dc510
Some checks failed
ci / test (push) Failing after 53s
ci: pin python:3.11 image so venv works
2026-06-22 09:34:40 -04:00

15 lines
357 B
YAML

name: ci
on:
push:
branches: [master, main]
jobs:
test:
runs-on: [self-hosted, linux, docker]
container: python:3.11
steps:
- name: checkout
uses: actions/checkout@v4
- name: install make
run: apt-get update -qq && apt-get install -y -qq --no-install-recommends make
- name: test
run: make test