Bump sphinx from 7.4.7 to 8.1.3 #2536
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: regressiontest | |
on: | |
pull_request: | |
branches: [devel] | |
paths: | |
- 'buildtest/**' | |
- 'tests/**' | |
- '.github/workflows/regression.yml' | |
- 'requirements.txt' | |
- 'pyproject.toml' | |
jobs: | |
buildtest_regtest: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [macos-latest, macos-13, ubuntu-latest] | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run buildtest unittests for os - ${{ matrix.os }}, python version - ${{ matrix.python-version }} | |
env: | |
OS: ${{ matrix.os }} | |
shell: bash | |
run: | | |
if [ $OS = "ubuntu-latest" ] ; then sudo apt-get install -y csh tcsh zsh emacs; else brew install tcsh zsh emacs ; fi | |
cat /etc/shells | |
source setup.sh | |
pip install pytest | |
pip install coverage | |
python $BUILDTEST_ROOT/buildtest/tools/unittests.py -c | |
returncode=$? | |
if [ $returncode != 0 ]; then exit $returncode; fi | |
buildtest cdash upload --site=github unittests | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |