forked from effect-handlers/effect-handlers-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (29 loc) · 925 Bytes
/
system_hia.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Handlers in Action
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
#From https://docs.github.com/en/actions/guides/publishing-docker-images
jobs:
bench-system-hia:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: satackey/[email protected]
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- name: Add write permission to directories
run: |
find . -type d -exec chmod 777 {} \;
- name: Test HIA system
run: |
make test_hia