gammatools/.gitea/workflows/flaskbuild.yml
Greg Gauthier eb779ec24b
All checks were successful
flaskbuild / build (push) Successful in 21s
will this be the last typo?
2024-07-21 18:55:42 +01:00

24 lines
451 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