Bump version to v0.1.8 #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Li18ngo Continuous Integration | |
on: | |
push: | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.23 | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.60.3 | |
args: --verbose | |
test: | |
strategy: | |
matrix: | |
go-version: [1.23] | |
platform: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
env: | |
COVER_DIR: ${{ github.workspace }}/coverage | |
COVER_FILE: coverage.out | |
COVER_OUT_PATH: ${{ github.workspace }}/coverage/coverage.out | |
COVER_HTML_PATH: ${{ github.workspace }}/coverage/coverage.html | |
GINKGO_REPORT: ginkgo.report | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install goveralls | |
run: go install github.com/mattn/goveralls@latest | |
- name: Install ginkgo | |
run: go install github.com/onsi/ginkgo/v2/[email protected] | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Ensure coverage directory exists | |
run: | | |
mkdir -p ${{ github.workspace }}/coverage | |
- name: Run tests and generate coverage profile with Ginkgo | |
run: | | |
ginkgo run -r -json-report {{env.GINKGO_REPORT}} -coverpkg=./... -coverprofile=coverage.out | |
- name: Apply coverage exclusions | |
run: | | |
${{ github.workspace }}/scripts/apply-coverage-exclusions.sh | |
- name: Check coverage directory contents | |
run: | | |
echo "Contents of ${{ github.workspace }}/coverage:" | |
ls -la ${{ github.workspace }}/coverage | |
- name: Generate HTML coverage report | |
run: | | |
go tool cover -html=coverage.out -o ${{ github.workspace }}/coverage/coverage.html | |
- name: Upload coverage to Coveralls | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: coverage.out | |