[APERTURE-959] Fix Nullable Datetime64 #4
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: Unit Test | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, ready_for_review ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Start up docker compose | |
| run: docker compose -f docker-compose.yaml up -d --remove-orphans | |
| - name: Run Tests | |
| run: go test -v -race -p=6 -cpu=1,4 ./... | |
| - name: Stop containers | |
| if: always() | |
| run: docker compose -f docker-compose.yaml down |