Skip to content

Update README.md to be more sales-friendly #71

Update README.md to be more sales-friendly

Update README.md to be more sales-friendly #71

Workflow file for this run

name: Backend
on:
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: "linux-test"
cancel-in-progress: true
jobs:
smoke:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.23.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Get Dependencies
working-directory: ./backend
run: |
go mod download
- name: Run tests
working-directory: ./backend
run: |
go build -o ./main && ./main &
SERVER_PID=$!
sleep 10
kill $SERVER_PID
unit:
needs: smoke
if: |
startsWith(github.head_ref, 'feature/')
|| startsWith(github.head_ref, 'fix/')
|| startsWith(github.head_ref, 'refactor/')
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.23.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Get Dependencies
working-directory: ./backend
run: |
go get .
- name: Run tests
working-directory: ./backend
run: go test ./...