Bump setuptools from 69.5.1 to 71.0.4 #107
Workflow file for this run
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: tests | |
'on': | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- 3.x | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
arch: | |
- x64 | |
install-via: | |
- pip | |
include: | |
- python-version: 3.11 | |
os: windows-latest | |
arch: x86 | |
install-via: pip | |
- python-version: 3.11 | |
os: ubuntu-latest | |
arch: x64 | |
install-via: script | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'Set up Python ${{ matrix.python-version }}' | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '${{ matrix.python-version }}' | |
architecture: '${{ matrix.arch }}' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
- name: Install package | |
run: poetry run python setup.py install | |
- name: Run linter | |
run: poetry run ruff check . | |
- name: Run formatter | |
run: poetry run ruff format . --check | |
- name: Run test scripts | |
run: | | |
poetry run python examples/get_csv.py | |
poetry run python examples/get_by_coin_name.py | |
poetry run python examples/get_by_id_number.py |