build(deps): Bump the gh-actions group with 3 updates #113
Workflow file for this run
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| # Automatically stop old builds on the same branch/PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| pre-commit: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@82d477f15f3a381dbcc8adc1206ce643fe110fb7 # v0.9.3 | |
| with: | |
| environments: default lint | |
| - name: pre-commit | |
| run: pixi run pre-commit-run --color=always --show-diff-on-failure | |
| pytest: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| services: | |
| mssql: | |
| image: mcr.microsoft.com/mssql/server:2022-latest | |
| env: | |
| ACCEPT_EULA: Y | |
| SA_PASSWORD: Passw0rd | |
| ports: | |
| - 1433:1433 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| environment: [py311, py312, py313] | |
| database: [sqlite, mssql, duckdb] | |
| include: | |
| - database: sqlite | |
| connection-string: sqlite:///test.sqlite3 | |
| - database: mssql | |
| connection-string: mssql+pyodbc://sa:Passw0rd@localhost:1433/master?driver=ODBC+Driver+18+for+SQL+Server&Encrypt=no | |
| - database: duckdb | |
| connection-string: duckdb:///test.duckdb | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install msodbcsql18 | |
| if: matrix.database == 'mssql' | |
| run: sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@82d477f15f3a381dbcc8adc1206ce643fe110fb7 # v0.9.3 | |
| with: | |
| environments: ${{ matrix.environment }} | |
| activate-environment: true | |
| - name: Install repository | |
| run: pixi run postinstall | |
| - name: Run pytest | |
| run: pixi run test-coverage --color=yes | |
| env: | |
| DB_CONNECTION_STRING: ${{ matrix.connection-string }} |