Skip to content

Fuck you github, I added actions to make my life easier, not to have … #27

Fuck you github, I added actions to make my life easier, not to have …

Fuck you github, I added actions to make my life easier, not to have … #27

Workflow file for this run

name: "[Reusable] End-to-end tests"
on:
workflow_call:
jobs:
test:
runs-on: windows-2022
timeout-minutes: 10
defaults:
run:
working-directory: src
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: src
pattern: *

Check failure on line 23 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
merge-multiple: true
- name: Cache Secrossphere demo
uses: actions/cache@v3
with:
path: src/E2ETest/bin/scs.zip
key: scs-demo
- name: Run tests
run: |
cd ./E2ETest
pip install -r requirements.txt
robot --outputdir results ./SecrossphereDemoTestSuite.robot
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: results
path: src/E2ETest/results