Skip to content

Commit

Permalink
ci: change order of commands in push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalcaliskan committed Sep 6, 2022
1 parent c03240c commit cfb47a7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
Expand Down Expand Up @@ -40,12 +41,12 @@ jobs:
# runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: make -s test

Expand Down

0 comments on commit cfb47a7

Please sign in to comment.