Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed May 27, 2024
1 parent 90e1f46 commit 72a30a2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/systems.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Systems
on:
push:
schedule:
# Sunday 4:30 UTC or 00:30 EDT
- cron: '30 4 * * 0'
- cron: '30 4 * * 1'

concurrency:
group: systems-omega_h
Expand Down Expand Up @@ -50,14 +51,14 @@ jobs:
- name: print build log
working-directory: omega_h/.github/workflows
run: cat omega_h-test-result/Build.log
run: cat omega_h-result/Build.log

- name: print test log
working-directory: omega_h/.github/workflows
run: cat omega_h-test-result/Test.log
run: cat omega_h-result/Test.log

- name: check failed test
working-directory: omega_h/.github/workflows
run: if grep "Failed" omega_h-test-result/Test.log; then return 1; fi
run: if grep "Failed" omega_h-result/Test.log; then return 1; fi


0 comments on commit 72a30a2

Please sign in to comment.