Skip to content

Command progress (deploy, transfer) #2011

Command progress (deploy, transfer)

Command progress (deploy, transfer) #2011

Workflow file for this run

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