update manifest #19
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: Run Nightly Integration Tests | |
on: | |
push: | |
branches: | |
- main | |
# schedule: | |
# - cron: "0 0 * * *" | |
jobs: | |
integration-test-runner: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: oNaiPs/secrets-to-env-action@v1 | |
with: | |
secrets: ${{ toJSON(secrets) }} | |
- uses: actions/checkout@v4 | |
with: | |
path: ./ | |
ref: main | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "stable" | |
- name: prep workspace | |
run: | | |
just init-workspace | |
- name: run integration tests | |
run: | | |
just integration-test-all-plugins | |