Skip to content

finally got inter step communication #4

finally got inter step communication

finally got inter step communication #4

Workflow file for this run

name: run test file
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install dependencies
run: make deps
- name: test
id: test
run: |
make test >> .tempfile
cat .tempfile
cat .tempfile | grep "Error 74" >/dev/null
if test $? -ne 0; then echo "todo=true" >> "$GITHUB_OUTPUT"; fi
rm .tempfile
- name: show files
run: make show
- name: check for leaks
run: make checkleaks
if: ${{ steps.test.outputs.todo }}