-
-
Notifications
You must be signed in to change notification settings - Fork 64
32 lines (26 loc) · 685 Bytes
/
run-tests.yml
File metadata and controls
32 lines (26 loc) · 685 Bytes
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
name: 'Execute tests'
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
run-tests:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install make autoconf dash
- name: Install Argbash
run: "sudo make install PREFIX=/usr"
working-directory: ./resources
- name: Test Argbash
run: "make -B ../tests/regressiontests/Makefile && make check ARGBASH_EXEC=argbash ARGBASH_INIT_EXEC=argbash-init"
working-directory: ./resources