Thanks to visit codestin.com
Credit goes to github.com

Skip to content

move settings files to app dir in any case #400

move settings files to app dir in any case

move settings files to app dir in any case #400

Workflow file for this run

name: Tests
on:
pull_request:
types: [opened, synchronize, reopened, edited]
branches: [main]
paths:
[birdnet_analyzer/**, .github/workflows/ci.yml, tests/**, pyproject.toml]
push:
branches: [main]
paths:
[birdnet_analyzer/**, .github/workflows/ci.yml, tests/**, pyproject.toml]
concurrency:
group: "${{ github.event.pull_request.number }}-${{ github.ref_name }}-${{ github.workflow }}"
cancel-in-progress: true
jobs:
running-tests:
runs-on: ${{ matrix.os }}
env:
IS_GITHUB_RUNNER: "true"
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[embeddings,train,tests]
- name: Run tests
run: |
python -m pytest