Skip to content

Add coverage to file_regex status check method #1723

Add coverage to file_regex status check method

Add coverage to file_regex status check method #1723

Workflow file for this run

name: installation
on:
pull_request:
branches: [devel]
jobs:
buildtest-installation:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, macos-13, ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Buildtest Installation 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 tcsh zsh; else brew install tcsh zsh ; fi
echo "$SHELL"
$SHELL --version
git --version
pip install -U pip
python --version
set +x
source setup.sh
set -x
which buildtest
buildtest --version
- uses: actions/checkout@v3
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
timeout-minutes: 30