If we use a local instrument file, warn the user. Otherwise, don't _e… #178
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: Build and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "doc/**" | |
- README.md | |
defaults: | |
run: | |
shell: bash | |
env: | |
ANSWER_VER: 15 | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: [ '3.11' ] | |
include: | |
- os: ubuntu-latest | |
python-version: '3.12' | |
- os: ubuntu-latest | |
python-version: '3.10' | |
- os: ubuntu-latest | |
python-version: 3.9 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- uses: s-weigand/[email protected] | |
with: | |
update-conda: true | |
conda-channels: conda-forge | |
activate-conda: true | |
python-version: ${{matrix.python-version}} | |
- name: Install dependencies and soxs | |
shell: bash | |
env: | |
mode: testing | |
run: source ./tests/ci_install.sh | |
- name: Run Tests | |
run: py.test -vv soxs/tests |