fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.41 (#5689) #23344
This file contains hidden or 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: Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| DAGGER_NO_NAG: "1" | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: "Tests (Go)" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| - name: Run Unit Tests | |
| uses: dagger/dagger-for-github@v7 | |
| with: | |
| verb: call | |
| version: ${{ steps.mise_versions.outputs.dagger }} | |
| args: test --source . unit export --path coverage.txt | |
| - name: Upload Coverage | |
| uses: codecov/codecov-action@v5.5.4 | |
| with: | |
| file: coverage.txt | |
| flags: unittests | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| test-darwin: | |
| name: "Tests (Go - Darwin)" | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| - name: Unit Test SQLite | |
| env: | |
| FLIPT_TEST_SHORT: "true" | |
| run: go test -v -count=1 -timeout=60s -short ./... | |
| ui: | |
| name: "Tests (UI)" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| - name: Unit Test | |
| run: | | |
| npm ci | |
| npm run test | |
| working-directory: ui | |
| install: | |
| name: "Test Install Script" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Shellcheck | |
| uses: reviewdog/action-shellcheck@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review | |
| path: install.sh | |
| - name: Install | |
| run: | | |
| chmod +x ./install.sh | |
| ./install.sh | |
| migration: | |
| name: "Tests (Migration)" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run Migration Tests | |
| uses: dagger/dagger-for-github@v7 | |
| with: | |
| verb: call | |
| version: ${{ steps.mise_versions.outputs.dagger }} | |
| args: test --source . migration |