diff --git a/.chasten/checks.yml b/.chasten/checks.yml index 91c7ce1a..e28eeff3 100644 --- a/.chasten/checks.yml +++ b/.chasten/checks.yml @@ -33,4 +33,4 @@ checks: pattern: './/FunctionDef/body//If[ancestor::If and not(parent::orelse)]' count: min: 1 - max: 15 + max: 15 \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ab68c16..bde90beb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ env: # Focuses on the master branch only on: push: - branches: [ master ] + branches: [ master , Datasette-serve-fix] pull_request: branches: [ master ] @@ -22,8 +22,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # Performs all actions on different versions of Python - python-version: ['3.11'] + os: [ubuntu-latest] + python-version: ["3.10","3.11"] + include: + - os: macos-latest + python-version: "3.11" + - os: windows-latest + python-version: "3.11" # Define the workflow steps steps: # Checkout the code of the repository