mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-03 20:25:18 +02:00
style(workflows): standardize quotes and fix typo in frontend-test.yml
This commit is contained in:
parent
502624366e
commit
d797095037
2 changed files with 10 additions and 10 deletions
19
.github/workflows/backend-test.yml
vendored
19
.github/workflows/backend-test.yml
vendored
|
@ -6,38 +6,37 @@ permissions:
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- 'backend/server/**'
|
- "backend/server/**"
|
||||||
- '.github/workflows/backend-test.yml'
|
- ".github/workflows/backend-test.yml"
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- 'backend/server/**'
|
- "backend/server/**"
|
||||||
- '.github/workflows/backend-test.yml'
|
- ".github/workflows/backend-test.yml"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: set up python 3.12
|
- name: set up python 3.12
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: "3.12"
|
||||||
|
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt update -q
|
sudo apt update -q
|
||||||
sudo apt install -y -q \
|
sudo apt install -y -q python3-gdal
|
||||||
python3-gdal
|
|
||||||
|
|
||||||
- name: start database
|
- name: start database
|
||||||
run: |
|
run: |
|
||||||
docker compose -f .github/.docker-compose-database.yml up -d
|
docker compose -f .github/.docker-compose-database.yml up -d
|
||||||
|
|
||||||
- name: install python libreries
|
- name: install python libraries
|
||||||
working-directory: backend/server
|
working-directory: backend/server
|
||||||
run: |
|
run: pip install -r requirements.txt
|
||||||
pip install -r requirements.txt
|
|
||||||
|
|
||||||
- name: run server
|
- name: run server
|
||||||
working-directory: backend/server
|
working-directory: backend/server
|
||||||
|
|
1
.github/workflows/frontend-test.yml
vendored
1
.github/workflows/frontend-test.yml
vendored
|
@ -16,6 +16,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue