build(deps): bump actions/checkout from 4.2.2 to 5.0.0 (#563) #306
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: ocaml / main | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| with: | |
| submodules: true | |
| - name: Build ocaml-ci docker image | |
| run: docker build -t ocaml-ci -f .github/Dockerfile . | |
| - name: Run exercism/ocaml ci (runs tests) for all exercises | |
| run: docker run -w /repo -v $(pwd):/repo ocaml-ci .github/.gha-ci.sh |