print ldconfig #195
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@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| check-latest: true | |
| - name: Print environment | |
| run: | | |
| ldconfig -p | grep X11 | |
| which go | |
| go env | |
| make vars | |
| - name: Check format | |
| run: make check-format | |
| - name: Check vet | |
| run: make check-vet | |
| - name: Run tests | |
| run: make test | |
| - name: Build renku-dev-utils | |
| run: make rdu | |
| - name: Install libraries for ubuntu | |
| run: | | |
| sudo apt install libx11-dev | |
| - name: Print environment with x11 | |
| run: | | |
| which go | |
| go env | |
| make vars | |
| - name: Run tests with x11 | |
| run: make test | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| check-latest: true | |
| - name: Install libraries for ubuntu | |
| run: | | |
| sudo apt install libx11-dev | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.6 |