Skip to content

Commit

Permalink
Grant execute permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
MGTheTrain committed Nov 13, 2024
1 parent fa1cca4 commit 1e21d34
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
with:
go-version: '1.21.x'

- name: Grant execute permissions
run: chmod +x *
working-directory: ./scripts

- name: Run Unit tests
run: ./run-test.sh -u
working-directory: ./scripts

# - name: Run Integration tests
# run: ./run-test.sh -i
# run: sudo ./run-test.sh -i
# working-directory: ./scripts

# Run static code analysis on source code
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
with:
go-version: '1.21.x'

- name: Grant execute permissions
run: chmod +x *
working-directory: ./scripts

- name: Run Unit tests
run: ./run-test.sh -u
working-directory: ./scripts
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
with:
go-version: '1.21.x'

- name: Grant execute permissions
run: chmod +x *
working-directory: ./scripts

- name: Run Unit tests
run: ./run-test.sh -u
working-directory: ./scripts
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
- name: Install golangci-lint package 📦
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest

- name: Grant execute permissions
run: chmod +x *
working-directory: ./scripts

- name: Auto-format and lint Go
run: |
./format-and-lint.sh
Expand Down

0 comments on commit 1e21d34

Please sign in to comment.