Skip to content

Commit

Permalink
CI navigates go main for each test
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimbbp committed Mar 11, 2024
1 parent 559ccc1 commit fe87a0e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/goBuildMac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ jobs:
run: go mod download
- name: Install vips
run: brew install vips
- name: Change Directory
run: cd src/main
- name: Build Test
run: go build
run: |
cd src/main
go build
- name: Custom Continuous Integration Tests
run: go CI_testing
run: |
cd src/main
go CI_testing

0 comments on commit fe87a0e

Please sign in to comment.