This repository was archived by the owner on Dec 25, 2025. It is now read-only.
Hot v0.3.0 #45
Workflow file for this run
This file contains hidden or 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: Integration Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| name: Run Integration Tests | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Make test script executable | |
| run: chmod +x ./tests/test-action.sh | |
| - name: Run test script | |
| run: ./tests/test-action.sh | |
| - name: Test action in workflow | |
| uses: ./ | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| source: '.github/template.yml' | |
| branch: test-branch | |
| test-mode: "true" |