Skip to content

Commit

Permalink
PyTest integrations with github workflow actions (work-in-progress).
Browse files Browse the repository at this point in the history
  • Loading branch information
vmdocua committed Oct 9, 2023
1 parent a5fe2e4 commit 32592bc
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: PyTest

on:
push:
branches:
- master
pull_request:
branches:
- master

env:
POSTGRES_DB: rmdb

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Configure environment
run: |
git config --global user.name "repromon-test"
git config --global user.email "[email protected]"
uname -a
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
echo TODO

0 comments on commit 32592bc

Please sign in to comment.