1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-02 03:35:18 +02:00

style(workflows): standardize quotes and fix typo in frontend-test.yml

This commit is contained in:
Sean Morley 2025-06-23 08:33:43 -04:00
parent 502624366e
commit d797095037
2 changed files with 10 additions and 10 deletions

View file

@ -6,38 +6,37 @@ permissions:
on:
pull_request:
paths:
- 'backend/server/**'
- '.github/workflows/backend-test.yml'
- "backend/server/**"
- ".github/workflows/backend-test.yml"
push:
paths:
- 'backend/server/**'
- '.github/workflows/backend-test.yml'
- "backend/server/**"
- ".github/workflows/backend-test.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
- name: install dependencies
run: |
sudo apt update -q
sudo apt install -y -q \
python3-gdal
sudo apt install -y -q python3-gdal
- name: start database
run: |
docker compose -f .github/.docker-compose-database.yml up -d
- name: install python libreries
- name: install python libraries
working-directory: backend/server
run: |
pip install -r requirements.txt
run: pip install -r requirements.txt
- name: run server
working-directory: backend/server

View file

@ -16,6 +16,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4