Bump urllib3 from 1.26.15 to 1.26.17 #112
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: 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/[email protected] | |
- 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" |