Skip to content

Commit

Permalink
Initial version of the GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraig3 committed Aug 12, 2024
1 parent 997edac commit 8f3772a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/django_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Django CI

on:
push:
branches:
- test-poetry
pull_request:
branches:
- test-poetry

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Check out repository

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11" # Set this to the Python version you are using

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Configure Poetry
run: |
poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install

- name: Run tests
run: poetry run test

0 comments on commit 8f3772a

Please sign in to comment.