Bump ruff from 0.4.7 to 0.4.9 in the pip group across 1 directory #387
Workflow file for this run
This file contains 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: macOS Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
release: | |
types: [published] | |
jobs: | |
macostests: | |
name: macOS | |
strategy: | |
matrix: | |
group: [integrity, python, usage, usage2] | |
python-version: [3.11] | |
include: | |
- group: python | |
python-version: 3.12 | |
fail-fast: false | |
timeout-minutes: 45 | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Base Setup | |
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
- name: Setup firefox | |
run: brew install --cask firefox | |
- name: Install dependencies | |
env: | |
GROUP: ${{ matrix.group }} | |
run: | | |
bash ./scripts/ci_install.sh | |
- name: Run test ${{ matrix.group }} | |
env: | |
GROUP: ${{ matrix.group }} | |
JLAB_BROWSER_TYPE: webkit | |
run: | | |
bash ./scripts/ci_script.sh |