Skip to content

Commit

Permalink
Fix macos CI by pinning Python to 3.11 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol authored Nov 19, 2023
1 parent 23a6ccd commit 8327eb8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ name: CI

on:
push:
branches:
- main
tags: ["v*"]
branches: ["main"]
pull_request:
branches:
- "**"
branches: ["*"]

jobs:
test:
Expand All @@ -20,6 +19,11 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 16

- uses: actions/setup-python@v4
with:
python-version: '3.11'

- run: npm install
- run: npm test

Expand Down

0 comments on commit 8327eb8

Please sign in to comment.