-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
picocli fish completion: dejagnu github action
- Loading branch information
serg-v
committed
Feb 25, 2023
1 parent
3caf4d7
commit 331f26e
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: DejaGnu Tests | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install Fish shell and DejaGnu | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y fish dejagnu | ||
- name: Check versions | ||
run: | | ||
fish --version | ||
runtest --version | ||
- name: Run DejaGnu fish tests | ||
run: | | ||
cd src/test/dejagnu.fishtests | ||
./runCompletion |