Skip to content

[release] flex v0.1.0 #33

[release] flex v0.1.0

[release] flex v0.1.0 #33

name: Automatic Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: actions/setup-go@v4
with:
go-version: 1.22
- run: go test -v -coverprofile=cover.out ./...
- run: go tool cover -html=cover.out -o cover.html
- run: rm cover.out
- uses: actions/upload-artifact@v4
with:
name: ut-coverage
path: ./cover.html