Skip to content

Fix stuck behave test #3

Fix stuck behave test

Fix stuck behave test #3

Workflow file for this run

name: Behave tests
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: behave
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install tox
run: pip install tox
- name: Test
run: make check
- uses: actions/upload-artifact@v3
if: failure()
with:
name: logs
path: tests/logs