Skip to content

Add _apply_user_env_overrides with tests, minor fix PyHANDLE deprecation warning, type annotations #75

Add _apply_user_env_overrides with tests, minor fix PyHANDLE deprecation warning, type annotations

Add _apply_user_env_overrides with tests, minor fix PyHANDLE deprecation warning, type annotations #75

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- "master"
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Use Python 3.8
uses: actions/setup-python@v6
with:
python-version: '3.8'
- name: Install requirements
run: |
python -m pip install --upgrade pip
python -m pip install -r dev-requirements.txt
- name: Lint using ni-python-styleguide
run: ni-python-styleguide lint .
test:
name: Test
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Use Python 3.8
uses: actions/setup-python@v6
with:
python-version: '3.8'
- name: Install requirements
run: |
python -m pip install --upgrade pip
python -m pip install -r dev-requirements.txt
- name: Test
run: pytest .