Skip to content

Commit

Permalink
Make goth runs compatible with yagna 0.7 (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmazurek authored Jun 17, 2021
1 parent 7fa69ee commit ea10f58
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/goth-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ on:

jobs:
goth-tests:
name: Run integration tests (stable)
strategy:
fail-fast: false
matrix:
branch: ["master", "b0.6"]
name: Run integration tests (nightly) on ${{ matrix.branch }}
runs-on: goth
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: 'b0.5'
ref: ${{ matrix.branch }}

- name: Configure python
uses: actions/setup-python@v2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: integration-test
name: Goth (PR and push)

on:
push:
Expand All @@ -9,17 +9,12 @@ on:
branches:
- master
- b0.*
schedule:
# run this workflow every day at 1:30 AM UTC
- cron: '30 1 * * *'

jobs:

goth-tests:
name: Run integration tests
runs-on: goth
steps:

- name: Checkout
uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ colorama = "^0.4.4"
# It will be then installable with `poetry install -E integration-tests`.
# Note that putting `goth` in `poetry.dev-dependencies` instead of `poetry.dependencies`
# would not work: see https://github.com/python-poetry/poetry/issues/129.
goth = { version = "^0.3", optional = true, python = "^3.8.0" }
goth = { version = "^0.4", optional = true, python = "^3.8.0" }
Deprecated = "^1.2.12"
python-statemachine = "^0.8.0"

Expand Down

0 comments on commit ea10f58

Please sign in to comment.