Bump actions/checkout from 09d2acae674a48949e3602304ab46fd20ae0c42f to 8edcb1bdb4e267140fa742c62e395cd74f332709 #392
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
| # This workflow will do a clean install of the dependencies and run tests across different versions | |
| # | |
| # Replace <track> with the track name | |
| # Replace <image-name> with an image to run the jobs on | |
| # Replace <action to setup tooling> with a github action to setup tooling on the image | |
| # Replace <install dependencies> with a cli command to install the dependencies | |
| # | |
| # Find Github Actions to setup tooling here: | |
| # - https://github.com/actions/?q=setup&type=&language= | |
| # - https://github.com/actions/starter-workflows/tree/main/ci | |
| # - https://github.com/marketplace?type=actions&query=setup | |
| # | |
| # Requires scripts: | |
| # - bin/test | |
| name: GDScript / Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: exercism/gdscript-test-runner | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8edcb1bdb4e267140fa742c62e395cd74f332709 | |
| - name: Verify all exercises | |
| run: godot --headless -s bin/verify-exercises.gd |