File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : FDW Acceptance Tests
2+ on :
3+ workflow_dispatch :
4+
5+ jobs :
6+ run :
7+ name : Build
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Set up Go
11+ uses : actions/setup-go@v3
12+ with :
13+ go-version : 1.19
14+
15+ - name : Checkout Steampipe
16+ uses : actions/checkout@v3
17+ with :
18+ repository : turbot/steampipe
19+ path : steampipe
20+
21+ - name : Build Steampipe
22+ run : |
23+ echo "PATH=$PATH:$HOME/build:/home/runner" >> $GITHUB_ENV
24+ ls /home/runner/work/
25+ cd /home/runner/work/steampipe
26+ go get
27+ go build -o /home/runner/steampipe
28+ steampipe -v
29+
30+ - name : Setup BATS
31+ uses : mig4/setup-bats@v1
32+ with :
33+ bats-version : 1.2.1
34+
35+ - name : Run a query
36+ run : |
37+ steampipe query "select 1 as col"
38+ pwd
39+ ls -al
You can’t perform that action at this time.
0 commit comments