-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (25 loc) · 890 Bytes
/
squad-preview.yml
File metadata and controls
30 lines (25 loc) · 890 Bytes
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
name: Squad Preview Validation
# Project type was not detected — configure build, test, and validation commands below
on:
push:
branches: [preview]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and test
run: |
# TODO: Project type was not detected — add your build/test commands here
# Go: go test ./...
# Python: pip install -r requirements.txt && pytest
# .NET: dotnet test
# Java (Maven): mvn test
# Java (Gradle): ./gradlew test
echo "No build commands configured — update squad-preview.yml"
- name: Validate
run: |
# TODO: Add pre-release validation commands here
echo "No validation commands configured — update squad-preview.yml"