Skip to content

Commit 384abcf

Browse files
committed
Add autobuild workind-directory test
1 parent b0c570e commit 384abcf

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

.github/workflows/__test-autobuild-working-dir.yml

+76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "Autobuild working directory"
2+
description: "Tests working-directory input of autobuild action"
3+
os: ["ubuntu-latest"]
4+
steps:
5+
- name: Test setup
6+
shell: bash
7+
run: |
8+
mkdir autobuild-dir
9+
mv *.go autobuild-dir
10+
# The invalid go.mod breaks Go autobuild in default directory
11+
touch go.mod
12+
- uses: ./../action/init
13+
with:
14+
languages: go
15+
tools: ${{ steps.prepare-test.outputs.tools-url }}
16+
- uses: ./../action/autobuild
17+
- uses: ./../action/analyze
18+
id: analysis
19+
env:
20+
TEST_MODE: true
21+
- name: Check database
22+
shell: bash
23+
run: |
24+
GO_DB="${{ fromJson(steps.analysis.outputs.db-locations).go }}"
25+
if [[ ! -d "$GO_DB" ]]; then
26+
echo "Did not create a database."
27+
exit 1
28+
fi

0 commit comments

Comments
 (0)