diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c42f0d0..65310a6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,7 @@ jobs: strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + datasette-version: ["<1.0", ">=1.0a7"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -24,6 +25,7 @@ jobs: - name: Install dependencies run: | pip install -e '.[test]' + pip install "datasette${{ matrix.datasette-version }}" - name: Run tests run: | pytest