Skip to content

add mass upload script #235

add mass upload script

add mass upload script #235

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9, 3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e '.[dev]'
python3 setup.py install
- name: Check code with Python ${{ matrix.python-version }}
run: |
make lint_local
make deadcode_local
- name: Test code with Python ${{ matrix.python-version }}
run: |
make test_local