-
Notifications
You must be signed in to change notification settings - Fork 10
47 lines (39 loc) · 1.1 KB
/
it-test.yml
File metadata and controls
47 lines (39 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: plugin it-test
permissions:
contents: write
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: true
- name: Build CLI
run: |
go build -o cli-v2 ./cli-v2.go
chmod +x cli-v2
- name: Run plugin tests
id: run_tests
continue-on-error: true
run: |
# Make the script executable
chmod +x run-tool-tests.sh
# Run tests for each tool directory
for tool_dir in plugins/tools/*/; do
tool_name=$(basename "$tool_dir")
if [ -d "$tool_dir/test/src" ]; then
echo "Running tests for $tool_name..."
./run-tool-tests.sh "$tool_name" || true
fi
done
- name: Check test results
if: steps.run_tests.outcome == 'failure'
run: |
echo "Some tool tests failed. Please check the logs above for details."
exit 1