gammatools/.gitea/workflows/flaskbuild.yml
Greg Gauthier 986e92bbd9
Some checks failed
flaskbuild / build (push) Failing after 19s
fix yet another typo
2024-07-21 18:53:57 +01:00

24 lines
452 B
YAML

name: flaskbuild
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