This commit is contained in:
parent
bebaaea937
commit
e3141dc510
1 changed files with 11 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue