Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraig3 committed Aug 12, 2024
1 parent 3906aa0 commit d03ffe3
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/django_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,20 @@ on:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./bloom_nofos
steps:
- uses: actions/checkout@v2
name: Check out repository

- name: Set up Python
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
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
python-version: "3.11"
- uses: Gr1N/setup-poetry@v8
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- run: poetry --version

- name: Install dependencies
run: poetry install
Expand Down

0 comments on commit d03ffe3

Please sign in to comment.