Skip to content

Bump step-security/harden-runner from 2.10.1 to 2.10.2 #320

Bump step-security/harden-runner from 2.10.1 to 2.10.2

Bump step-security/harden-runner from 2.10.1 to 2.10.2 #320

Workflow file for this run

name: SingleStore tests
on: [push]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
Test-Singlestore-integration:
runs-on: ubuntu-latest
environment: singlestore
services:
singlestoredb:
image: ghcr.io/singlestore-labs/singlestoredb-dev
ports:
- 3306:3306
- 8080:8080
- 9000:9000
env:
ROOT_PASSWORD: test
SINGLESTORE_LICENSE: ${{ secrets.SINGLESTORE_LICENSE }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: sanity check using mysql client
run: |
mysql -u root -ptest -e "CREATE DATABASE libschematest partitions 2" -h 127.0.0.1
mysql -u root -ptest -e "set global snapshots_to_keep = 1" -h 127.0.0.1
mysql -u root -ptest -e "set global minimal_disk_space = 10" -h 127.0.0.1
mysql -u root -ptest -e "set global log_file_size_partitions = 1048576" -h 127.0.0.1
mysql -u root -ptest -e "set global log_file_size_ref_dbs = 1048576" -h 127.0.0.1
- 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_SINGLESTORE_TEST_DSN: "root:test@tcp(127.0.0.1:3306)/libschematest?tls=false"
run: go test ./lsmysql/... ./lssinglestore/... -v
- name: Run Coverage
env:
LIBSCHEMA_SINGLESTORE_TEST_DSN: "root:test@tcp(127.0.0.1:3306)/libschematest?tls=false"
run: go test -coverprofile=coverage.txt -covermode=atomic -coverpkg=github.com/muir/libschema/... ./lsmysql/... ./lssinglestore/...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
version: "v0.1.15"
verbose: true
fail_ci_if_error: true
flags: singlestore_tests