Skip to content

[go](deps): Bump github.com/turbot/steampipe-plugin-sdk/v5 from 5.8.0 to 5.10.4 #7

[go](deps): Bump github.com/turbot/steampipe-plugin-sdk/v5 from 5.8.0 to 5.10.4

[go](deps): Bump github.com/turbot/steampipe-plugin-sdk/v5 from 5.8.0 to 5.10.4 #7

Workflow file for this run

name: Acceptance Tests
on:
pull_request:
jobs:
build_test:
name: Build test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Checkout
uses: actions/checkout@v4
- name: Fetching Go Cache Paths
id: go-cache-paths
run: |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
- name: Go Build Cache
id: build-cache
uses: actions/cache@v4
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
- name: Go Mod Cache
id: mod-cache
uses: actions/cache@v4
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
- name: Test building sqlite extension with chaos plugin
run: |
make build plugin=chaos
- name: Check binary is created
run: |
ls -l steampipe_sqlite_chaos.so