test action #1
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: update-versions | |
| on: [push] | |
| jobs: | |
| build: | |
| if: github.repository == 'DMOJ/runtimes-python' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.14 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.14' | |
| - name: Installing dependencies | |
| run: pip install -r requirements.txt | |
| - name: Update python versions | |
| run: | | |
| sed -i '/python-version:/c\ python-version: [ '"$(python get_versions.py | tr '\n' , | sed 's/,$//;s/,/, /g')"' ]' .github/workflows/build.yml | |
| - name: Create pull request | |
| uses: peter-evans/create-pull-request@v4 | |
| with: | |
| token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
| author: dmoj-build <[email protected]> | |
| committer: dmoj-build <[email protected]> | |
| commit-message: 'update python versions' | |
| title: 'update python versions' | |
| body: This PR has been auto-generated to update the python versions in `build` action. | |
| reviewers: Xyene, quantum5, kiritofeng | |
| branch: update-versions |