feat: add Smart Release Please action MAPCO-8998 #8
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: Test smart release-please action | |
| on: | |
| pull_request: | |
| paths: | |
| - 'actions/smart-release-please/**' | |
| jobs: | |
| test-action: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Run smart release-please action tests | |
| shell: bash | |
| run: python3 test/test_rc_align.py -v | |