Skip to content

Commit 167b3fc

Browse files
committed
i think this works now
1 parent 95794e3 commit 167b3fc

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515
jobs:
16-
setup_cms:
16+
backend_testing:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/setup-go@v3
@@ -22,24 +22,16 @@ jobs:
2222
- uses: actions/checkout@v3
2323
- name: Building docker containers using docker-compose
2424
run: GO_MOD=go.mod docker-compose up -d --build
25-
26-
backend_testing:
27-
runs-on: ubuntu-latest
28-
needs: [ setup_cms ]
29-
steps:
30-
- uses: actions/setup-go@v3
31-
with:
32-
go-version: 1.18
33-
- uses: actions/checkout@v3
3425
- name: Golang Tests
3526
run: cd backend && go test -v ./...
3627

3728
frontend_testing:
3829
runs-on: ubuntu-latest
39-
needs: [ setup_cms ]
4030
steps:
4131
- uses: actions/checkout@v3
4232
- name: type check
4333
run: cd frontend && npm install && npm run types
34+
- name: Building docker containers using docker-compose
35+
run: GO_MOD=go.mod docker-compose up -d --build
4436
- name: react tests
4537
run: cd frontend && npm test

0 commit comments

Comments
 (0)