-
Notifications
You must be signed in to change notification settings - Fork 479
29 lines (27 loc) · 800 Bytes
/
Copy pathdejagnu.yml
File metadata and controls
29 lines (27 loc) · 800 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
name: DejaGnu Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Fish shell and DejaGnu
run: |
sudo apt-add-repository -y ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install -y fish dejagnu tcllib
- name: Check versions
run: |
fish --version
runtest --version
- name: Checkout
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v2
- name: Run DejaGnu fish tests
continue-on-error: true
run: |
cd src/test/dejagnu.fishtests
./runCompletion
- name: Run DejaGnu bash tests
continue-on-error: true
run: |
cd src/test/dejagnu.tests
./runCompletion