feat: add UserUpdate ConvertUserIDToOpenID ConvertOpenIDToUserID #272
This file contains 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: Go | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
- staging | |
- trying | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.17', 'oldstable', 'stable' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: go build -v ./... | |
- name: Lint | |
uses: golangci/golangci-lint-action@v3.6.0 | |
with: | |
version: v1.53 | |
- name: Test | |
run: go test -v ./... | |
# Added to summarize the matrix (otherwise we would need to list every single | |
# job in bors.toml) | |
# thanks https://forum.bors.tech/t/bors-with-github-workflows/426/4 | |
tests-result: | |
name: Tests result | |
if: always() | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mark the job as a success | |
if: needs.build.result == 'success' | |
run: exit 0 | |
- name: Mark the job as a failure | |
if: needs.build.result == 'failure' | |
run: exit 1 |