Skip to content

Commit

Permalink
build: remove "make install" from CI steps
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Dec 19, 2024
1 parent a975289 commit e024efc
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 24 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install deps
run: make install

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
with:
fetch-depth: 0

- name: Install deps
run: make install

- name: Fuzz
run: |
go test ./pkg/usaddress/... -fuzz Fuzz -fuzztime 10m
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
go-version: stable
id: go

- name: Install deps
run: make install

- name: Run Tests (Linux)
if: runner.os == 'Linux'
run: make check
Expand Down Expand Up @@ -56,9 +53,6 @@ jobs:
run: |
choco install -y make mingw
- name: Install deps
run: make install

- name: Run Short Tests (Non-Linux)
run: |
go test ./... -short
Expand Down Expand Up @@ -91,9 +85,6 @@ jobs:
sudo systemctl stop mono-xsp4.service || true
sudo killall mono || true
- name: Install deps
run: make install

- name: Build Frontend
run: make build

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/openshift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v3

- name: Install deps
run: make install

- name: Docker Build
if: runner.os == 'Linux'
run: make docker-openshift
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Install deps
run: make install

- name: Short Tests
if: runner.os == 'Linux'
env:
Expand Down Expand Up @@ -77,9 +74,6 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Install deps
run: make install

- name: Load Release URL File from release job
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit e024efc

Please sign in to comment.