Skip to content

Require 3.9 as a minimum python version #97

Require 3.9 as a minimum python version

Require 3.9 as a minimum python version #97

Workflow file for this run

name: Docker Compose Actions Workflow
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
# need checkout before using compose-action
- uses: actions/checkout@v3
- name: Create folders
run: |
mkdir -p var/{log,screenshots,mail,sms,gcm,downloads,reports}
chmod -R a+rwX var
- uses: isbang/compose-action@v1.2.0
- name: Test
run: |
docker-compose exec -T behaving behave --junit tests/features
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
with:
report_paths: "**/TESTS-*.xml"