test directory rename #287
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: README OpenConfig Path and RPC Coverage | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
schedule: | |
- cron: "49 0 * * *" | |
jobs: | |
integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
cache: false | |
- name: Validate Validation Script | |
run: | | |
cd tools/validate_readme_spec | |
./validate_readme_spec_test.sh | |
- name: Validate Template README | |
run: | | |
go install ./tools/validate_readme_spec | |
validate_readme_spec -alsologtostderr doc/test-requirements-template.md | |
- name: Validate Test READMEs | |
run: | | |
go install ./tools/validate_readme_spec | |
# TODO: Remove -feature-dir argument after all READMEs have converted to the new format. | |
validate_readme_spec -alsologtostderr -feature-dir feature/bgp/policybase/otg_tests/import_export_multi |