Skip to content

Commit

Permalink
CREATE .github/workflows/app.yml - add initial github action workflow…
Browse files Browse the repository at this point in the history
… file
  • Loading branch information
JohnVonNeumann committed Feb 26, 2024
1 parent fb1ab3d commit b503bfd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Python App CI/CD

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run: poetry install
- name: Test with pytest
run: poetry run pytest

0 comments on commit b503bfd

Please sign in to comment.