build(deps): bump actions/checkout from 6 to 7 #11
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 | |
| on: | |
| pull_request: | |
| push: | |
| tags-ignore: | |
| - '**' | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: build | |
| uses: docker/build-push-action@v7 | |
| with: | |
| load: true | |
| tags: fastlaneci:latest | |
| - name: Test installed tools | |
| run: | | |
| set -e | |
| docker run --rm fastlaneci:latest java -version | |
| docker run --rm fastlaneci:latest python3 --version | |
| docker run --rm fastlaneci:latest ruby --version | |
| docker run --rm fastlaneci:latest node --version | |
| docker run --rm fastlaneci:latest xar --version | |
| docker run --rm fastlaneci:latest uv --version |