ci: pin python:3.11 image so venv works
Some checks failed
ci / test (push) Failing after 53s

This commit is contained in:
russell 2026-06-22 09:34:40 -04:00
parent bebaaea937
commit e3141dc510
No known key found for this signature in database

View file

@ -1,12 +1,15 @@
name: ci
'on': push
on:
push:
branches: [master, main]
jobs:
test:
runs-on:
- self-hosted
- build
runs-on: [self-hosted, linux, docker]
container: python:3.11
steps:
- name: checkout
uses: actions/checkout@v4
- name: script
run: make test
- 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