Skip to content

chore: prepare CHANGELOG for v1.2.0 #21

chore: prepare CHANGELOG for v1.2.0

chore: prepare CHANGELOG for v1.2.0 #21

Workflow file for this run

# See: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax
name: CI
permissions:
contents: read
on:
push:
branches: [ "main" ]
paths-ignore:
- '**.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**.md'
jobs:
test:
name: Build + Lint + Fmt + Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install asdf & tools
uses: asdf-vm/actions/install@v4
- name: Build
run: task build
- name: Check for Linting or Formatting issues
run: |
task lint-fix
task fmt
git diff --exit-code
- name: Test with Coverage report
run: |
task test.ci
go tool cover -func=coverage.out > coverage.txt
echo "## Test Coverage Report" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
cat coverage.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY