Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WillMart91 authored Nov 1, 2023
1 parent cabfa83 commit 40cb8ca
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/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 manages.py test

0 comments on commit 40cb8ca

Please sign in to comment.