Merge pull request #54 from joseluisq/fish-autoload-compliant #110
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
paket: | |
name: Paket test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: joseluisq/paket | |
options: -v ${{ github.workspace }}:/gitnow | |
shell: fish | |
run: | | |
fish -v | |
paket --version | |
git config --global --add safe.directory /gitnow | |
paket add /gitnow | |
/gitnow/testing/test.fish | |
fisher: | |
name: Fisher test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: joseluisq/paket | |
options: -v ${{ github.workspace }}:/gitnow | |
shell: fish | |
run: | | |
apk add curl && apk upgrade | |
curl -sL git.io/fisher | source | |
fish -v | |
fisher --version | |
fisher install /gitnow | |
/gitnow/testing/test.fish |