Goth update #2007
Workflow file for this run
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
name: Goth (PR and push) | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
# - <your-branch> # put your branch name here to test it @ GH Actions | |
pull_request: | |
branches: | |
- master | |
- b0.* | |
jobs: | |
goth-tests: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install Poetry | |
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.2 | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Initialize the test suite | |
run: poetry run poe tests_integration_init | |
- name: Run test suite | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: poetry run poe tests_integration | |
- name: Upload test logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: goth-logs | |
path: /tmp/goth-tests |