add gitea actions
This commit is contained in:
parent
a0b08f515e
commit
da5cca78aa
23
.gitea/workflow/flaskbuild.yml
Normal file
23
.gitea/workflow/flaskbuild.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
name: gobuild
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
env:
|
||||||
|
BUILD_TYPE: Release
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: python-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Clone Repo
|
||||||
|
run:
|
||||||
|
git clone https://repos.gmgauthier.com/gmgauthier/gammatools.git .
|
||||||
|
&& ls -la
|
||||||
|
- name: Prep Python Environment
|
||||||
|
run:
|
||||||
|
python -m pip install -r requirements.txt
|
||||||
|
- name: Run flask server tests
|
||||||
|
run:
|
||||||
|
pytest --rA --durations=0 --color=auto
|
||||||
|
|
Loading…
Reference in New Issue
Block a user