feat: fix SavePolicy bug to preserve unique indexes by using DeleteMany instead of Drop #39
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: CI | |
| on: [push,pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| services: | |
| mongodb: | |
| image: mongo | |
| ports: | |
| - 27017:27017 | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: '1.20' | |
| - name: Start MongoDB | |
| uses: supercharge/[email protected] | |
| with: | |
| mongodb-version: 4.4 | |
| mongodb-replica-set: test-rs | |
| mongodb-port: 42069 | |
| - uses: actions/checkout@v2 | |
| - name: Run Unit tests | |
| run: go test -v -coverprofile=./profile.cov ./... | |
| - uses: shogo82148/actions-goveralls@v1 | |
| with: | |
| path-to-profile: ./profile.cov | |
| semantic-release: | |
| needs: [test] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run semantic-release | |
| if: github.repository == 'casbin/mongodb-adapter' && github.event_name == 'push' | |
| run: | | |
| npm install --save-dev [email protected] | |
| npx semantic-release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |