update go to 1.23, upgrade package versions and github actions #140
  
    
      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: test | |
| on: [ push ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Start container with test databases | |
| run: docker compose -f test/docker-compose.yaml up -d | |
| - name: Prepare sqlite database | |
| run: make prepare-sqlite | |
| - name: Wait for docker containers to start | |
| run: sleep 30 | |
| - name: debug log | |
| run: docker logs test-mermerd-mssql-test-db-1 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - name: Install tparse for pretty test results | |
| run: go install github.com/mfridman/tparse@latest | |
| - name: Run test | |
| run: make test-all |