CUB-119: Add docker-compose, .env.example, remove legacy .NET/Angular code #38
@@ -13,22 +13,18 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup .NET
|
- name: Setup Go
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
dotnet-version: '9.0.x'
|
go-version: '1.23'
|
||||||
|
|
||||||
- name: Restore backend
|
- name: Build go-backend
|
||||||
run: dotnet restore
|
run: go build ./cmd/...
|
||||||
working-directory: ./backend
|
working-directory: ./go-backend
|
||||||
|
|
||||||
- name: Build backend
|
- name: Test go-backend
|
||||||
run: dotnet build --no-restore --configuration Release
|
run: go test ./...
|
||||||
working-directory: ./backend
|
working-directory: ./go-backend
|
||||||
|
|
||||||
- name: Test backend
|
|
||||||
run: dotnet test --no-build --configuration Release
|
|
||||||
working-directory: ./backend
|
|
||||||
|
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user