Skip to content

Initial version of the GitHub workflow #1

Initial version of the GitHub workflow

Initial version of the GitHub workflow #1

Workflow file for this run

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