Skip to content

fix: dynamic library on prod container #2

fix: dynamic library on prod container

fix: dynamic library on prod container #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.23'
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test ./...
- name: Build application
run: go build -o myapp