Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Start Dashboard, DB, and API Engine
run: docker compose -f docker-compose.dev.yaml up -d --build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.11"

- name: Set up Nodejs
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20"

Expand Down
6 changes: 3 additions & 3 deletions src/api-engine/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
[tox]
minversion=2.3.1
envlist = py38, flake8
envlist = py311, flake8
skipsdist=True
skip_missing_interpreters=True

Expand All @@ -23,5 +23,5 @@ deps = flake8
commands = flake8 {toxinidir}

[gh-actions]
python =
3.8: py38, flake8
python =
3.11: py311, flake8
Loading