chore(v5.47.2): 버전 범프 #223
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: Nova CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 2 | |
| - name: Verify dependencies | |
| run: | | |
| jq --version | |
| curl --version | head -1 | |
| - name: Run tests | |
| run: bash tests/test-scripts.sh | |
| - name: Run self-verification tests | |
| run: bash tests/test-self-verify.sh |