Skip to content

feat: Support spec.info #194

feat: Support spec.info

feat: Support spec.info #194

name: E2E test - scaffold command
on:
pull_request:
branches:
- main
- 'release-**'
jobs:
test-scaffold-cmd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Go setup
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- name: Build
run: |
make build-linux
chmod +x ./bin/modulectl-linux
ls -la ./bin
mv ./bin/modulectl-linux /usr/local/bin/modulectl
timeout-minutes: 5
- name: Run tests
run: |
make -C tests/e2e test-scaffold-cmd
timeout-minutes: 3