Skip to content

Commit

Permalink
refactor: ci pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluisq committed Nov 25, 2023
1 parent ce17ab2 commit 5ac9ff0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Test
uses: addnab/docker-run-action@v1
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
Expand All @@ -26,15 +27,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Test
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v3
with:
image: joseluisq/paket
options: -v ${{ github.workspace }}:/gitnow
shell: fish
run: |
apk add curl
apk add curl && apk upgrade
curl -sL git.io/fisher | source
fish -v
fisher --version
Expand Down

0 comments on commit 5ac9ff0

Please sign in to comment.