Skip to content

feat: add ExternalId in User struct (#110) #222

feat: add ExternalId in User struct (#110)

feat: add ExternalId in User struct (#110) #222

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- uses: actions/checkout@v2
- name: Run Unit tests
run: go test -v ./...
semantic-release:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run semantic-release
if: github.repository == 'casdoor/casdoor-go-sdk' && github.event_name == 'push'
run: |
npm install --save-dev semantic-release@17.2.4
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}