Skip to content

Commit

Permalink
ci: remove v1 parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jiro4989 committed Jul 6, 2024
1 parent 2910000 commit dcee82f
Showing 1 changed file with 1 addition and 28 deletions.
29 changes: 1 addition & 28 deletions .github/workflows/test_versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ on:
jobs:
test_vX:
runs-on: ubuntu-latest
strategy:
matrix:
type:
- default
- no-color
- 'yes'
- all
steps:
- uses: actions/checkout@v4
- name: Cache nimble
Expand All @@ -28,29 +21,9 @@ jobs:
restore-keys: |
${{ runner.os }}-nimble
- uses: jiro4989/setup-nim-action@v1
- uses: jiro4989/setup-nim-action@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
if: matrix.type == 'default'

- uses: ./
with:
no-color: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
if: matrix.type == 'no-color'

- uses: ./
with:
yes: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
if: matrix.type == 'yes'

- uses: ./
with:
no-color: true
yes: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
if: matrix.type == 'all'

- name: Print Nim version
run: nim -v
Expand Down

0 comments on commit dcee82f

Please sign in to comment.