Skip to content

Commit

Permalink
wm : pipeline added
Browse files Browse the repository at this point in the history
  • Loading branch information
WillMart91 committed Nov 1, 2023
1 parent a9f20e8 commit 0c7e8a0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python package
on: [push]
jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install packages
run: pip install -r requirements.txt
- name: Run tests
run: python manage.py test

0 comments on commit 0c7e8a0

Please sign in to comment.