-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into f/deployment-docker-compose-files
- Loading branch information
Showing
87 changed files
with
1,054 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Test agents-api | ||
run-name: ${{ github.actor }} is testing the code | ||
|
||
# TODO: Fix CI github actions | ||
# SCRUM-26 | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
Test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Configure Poetry to use .venv | ||
run: | | ||
cd agents-api | ||
poetry config virtualenvs.in-project true | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
with: | ||
path: agents-api/.venv | ||
key: ${{ runner.os }}-agents-api-poetry-${{ hashFiles('agents-api/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-agents-api-poetry- | ||
- name: Install dependencies | ||
run: | | ||
cd agents-api | ||
poetry install | ||
- name: Run tests | ||
run: | | ||
cd agents-api | ||
poetry run poe test --fail-limit 1 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Typecheck agents-api | ||
run-name: ${{ github.actor }} is typechecking the code | ||
|
||
# TODO: Fix CI github actions | ||
# SCRUM-26 | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
Typecheck: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Configure Poetry to use .venv | ||
run: | | ||
cd agents-api | ||
poetry config virtualenvs.in-project true | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
with: | ||
path: agents-api/.venv | ||
key: ${{ runner.os }}-agents-api-poetry-${{ hashFiles('agents-api/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-agents-api-poetry- | ||
- name: Cache pytype | ||
uses: actions/cache@v4 | ||
with: | ||
path: agents-api/.pytype | ||
key: ${{ runner.os }}-agents-api-pytype-${{ github.base_ref }} | ||
restore-keys: | | ||
${{ runner.os }}-agents-api-pytype- | ||
- name: Install dependencies | ||
run: | | ||
cd agents-api | ||
poetry install | ||
- name: Typecheck | ||
run: | | ||
cd agents-api | ||
poetry run poe typecheck | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.