Skip to content

feat: fix all GetPagination methods error: "response data format is incorrect" #230

feat: fix all GetPagination methods error: "response data format is incorrect"

feat: fix all GetPagination methods error: "response data format is incorrect" #230

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 [email protected]
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}