Bump codecov/codecov-action from 4 to 5 #400
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: MySQL tests | |
on: [push] | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
Test-mysql-integration: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:8 | |
env: | |
MYSQL_DATABASE: libschematest | |
MYSQL_ROOT_PASSWORD: mysql | |
options: >- | |
--health-cmd "mysqladmin ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 3306:3306 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f | |
with: | |
egress-policy: audit | |
allowed-endpoints: > | |
api.github.com:443 | |
codecov.io:443 | |
github.com:443 | |
go.dev:443 | |
golang.org:443 | |
proxy.golang.org:443 | |
storage.googleapis.com:443 | |
uploader.codecov.io:443 | |
- name: Check out repository code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version: '1.20' | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
env: | |
LIBSCHEMA_MYSQL_TEST_DSN: "root:mysql@tcp(127.0.0.1:3306)/libschematest?tls=false" | |
run: go test ./lsmysql/... -v | |
- name: Run Coverage | |
env: | |
LIBSCHEMA_MYSQL_TEST_DSN: "root:mysql@tcp(127.0.0.1:3306)/libschematest?tls=false" | |
run: go test -coverprofile=coverage.txt -covermode=atomic -coverpkg=github.com/muir/libschema/... ./lsmysql/... | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
version: "v0.1.15" | |
verbose: true | |
fail_ci_if_error: true | |
flags: mysql_tests | |