-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(WIP): fix pure_enable_container_detection
- Loading branch information
1 parent
1466ef7
commit 4824071
Showing
4 changed files
with
76 additions
and
46 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
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,21 @@ | ||
name: Test on MacOS | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
test-macos: | ||
name: Test on fish on MacOS | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: show os | ||
run: uname -s | ||
- name: Install Fish | ||
run: brew install fish | ||
- name: Install Fisher > Fishtape > Pure | ||
run: curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher jorgebucaran/fishtape ./ | ||
shell: fish {0} | ||
- name: Test Pure | ||
run: fishtape tests/*.test.fish | ||
shell: fish {0} |
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,19 @@ | ||
name: Test on NixOS | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
test-nixos: | ||
name: Test `pure` with Fish ${{ matrix.version.fish }} on NixOS container | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: [ | ||
{ fish: 3.7.0, alpine: 'edge' }, # https://search.nixos.org/packages?show=fish&type=packages&query=fish | ||
] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: make build-pure-on-nix FISH_VERSION=${{ matrix.version.fish }} | ||
- run: docker --version | ||
- run: make test-pure-on-nix FISH_VERSION=${{ matrix.version.fish }} |
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