Skip to content

Commit

Permalink
chore(CI/CD): Fix test action ref in publish
Browse files Browse the repository at this point in the history
  • Loading branch information
levaitamas committed Oct 24, 2023
1 parent ea21740 commit fdf5993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 26 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/publish-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,7 @@ on:
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Download modules
run: go mod download
- name: Go install
run: go install
- name: Test
run: go test -v -covermode=count
use: l7mp/stunner/.github/workflows/test.yml@main

push_to_registry:
name: Push Docker image to DockerHub
Expand Down
14 changes: 1 addition & 13 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,7 @@ on:
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Download modules
run: go mod download
- name: Go install
run: go install
- name: Test
run: go test -v -covermode=count
use: l7mp/stunner/.github/workflows/test.yml@main

push_to_registry:
name: Push Docker image to DockerHub
Expand Down

0 comments on commit fdf5993

Please sign in to comment.