18 lines
419 B
YAML
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
|