Bump the production-dependencies group across 1 directory with 4 updates #123
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
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
--- | |
name: macOS | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# Scheduled workflows run on the latest commit on the default or base branch | |
- cron: "0 0 1 * *" | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: "Reason for manually triggering workflow" | |
required: true | |
jobs: | |
ci: | |
runs-on: macos-13 | |
env: | |
CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
steps: | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/Library/Caches/pip | |
key: macos-pip | |
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install `gcc` | |
run: | | |
brew install gcc | |
brew unlink gcc | |
brew link gcc | |
- name: Show Python version | |
run: | | |
python --version | |
- name: Update host Python packaging | |
run: | | |
python -m pip install --upgrade cmake nox numpy pip | |
- name: Unit tests in Python 3.10 | |
if: matrix.python-version == '3.10' | |
run: | | |
nox --session unit-3.10 | |
- name: Unit tests in Python 3.11 | |
if: matrix.python-version == '3.11' | |
run: | | |
nox --session unit-3.11 | |
- name: Unit tests AND line coverage in Python 3.12 | |
if: matrix.python-version == '3.12' | |
run: | | |
nox --session cover | |
- name: Functional tests in Python 3.12 | |
if: matrix.python-version == '3.12' | |
run: | | |
nox --session functional-3.12 | |
- name: Run all doctests | |
if: matrix.python-version == '3.12' | |
run: | | |
nox --session doctest |