Skip to content

Commit

Permalink
Create run_unittests.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbeale-IL authored Oct 2, 2024
1 parent cc39c42 commit 3852ffc
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/run_unittests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application

on:
workflow_run:
push:
branches: [ "main", "covassist_cleanup" ]
pull_request:
branches: [ "main", "covassist_cleanup" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Poetry setup
# You may pin to the exact commit or the version.
uses: ClementWalter/poetry-action@845abd0cfcc6671c045a2f9df189360bb73e64c4
with:
os: "ubuntu-latest"
python-version: "3.12"

- name: Test with pytest
run: |
pytest

0 comments on commit 3852ffc

Please sign in to comment.