fix: dont let deepequal freak out on empty vs nil slice when disableExpose is true #489
Workflow file for this run
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: cicd | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
lint: | |
uses: ./.github/workflows/lint.yaml | |
test: | |
uses: ./.github/workflows/test.yaml | |
build: | |
needs: | |
- lint | |
- test | |
uses: ./.github/workflows/build.yaml |