Skip to content

Better changelog and branches management #135

Better changelog and branches management

Better changelog and branches management #135

Workflow file for this run

name: CI
on:
pull_request:
jobs:
main_ci:
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 # we need this because fetch-tags=true and because of a GHA bug: https://github.com/actions/checkout/issues/1471
fetch-tags: true
- name: FIXME
run: |
git show-ref
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Run build
run: |
make build
- name: Run lint
run: |
make FIX=0 lint
- name: Run test
run: |
make test-unit
- name: Run Doc
run: |
make doc
- name: Run integration tests
run: |
make test-integration
- name: Run git checks
run: |
make no-dirty
- name: Run clean
run: |
make clean
- name: Run git checks (after clean)
run: |
make no-dirty