Adding Djinni – Anonymous job search – banner (#48) #86
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 and increment version | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| code-quality: | |
| name: Code quality | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.26' | |
| - name: Run go vet | |
| run: go vet ./... | |
| - name: Unit tests | |
| run: go test $(go list ./... | grep -v '/integrationtest') -v |