-
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: run fish dejagnu tests from java
- Loading branch information
serg-v
committed
Feb 25, 2023
1 parent
2f75728
commit 811f4df
Showing
10 changed files
with
268 additions
and
233 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,22 @@ | ||
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: Checkout | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v2 | ||
- name: Run DejaGnu fish tests | ||
run: | | ||
cd src/test/dejagnu.fishtests | ||
./runCompletion |
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
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
Oops, something went wrong.