fix: set mount directory in update-global-images (#40) #97
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: Run tests | |
| # Trigger on push | |
| on: | |
| push: | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.2' | |
| check-latest: true | |
| - name: Install libraries for ubuntu | |
| run: | | |
| sudo apt install libx11-dev | |
| - name: Print environment | |
| run: | | |
| which go | |
| go env | |
| make vars | |
| - name: Check format | |
| run: make check-format | |
| - name: Check vet | |
| run: make check-vet | |
| - name: Build renku-dev-utils | |
| run: make rdu |