feat(plan): add plan sub-directory support #2214
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go: ['1.22'] | |
name: Go ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Test and build | |
run: | | |
go test -race ./... -check.vv | |
go build ./cmd/pebble | |
root-tests: | |
runs-on: ubuntu-latest | |
name: Root Tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Test | |
run: | | |
PEBBLE_TEST_USER=runner PEBBLE_TEST_GROUP=runner sudo -E -H go test ./... | |
format: | |
runs-on: ubuntu-latest | |
name: Format check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Ensure no formatting changes | |
run: | | |
go fmt ./... | |
git diff --exit-code | |
docs: | |
runs-on: ubuntu-latest | |
name: Automated docs check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install tox | |
run: pip install tox~=4.17 | |
- name: Ensure no CLI reference doc changes | |
run: | | |
tox -e commands | |
git diff --exit-code | |
working-directory: ./docs |