Skip to content

Bump ruff from 0.4.1 to 0.5.2 #103

Bump ruff from 0.4.1 to 0.5.2

Bump ruff from 0.4.1 to 0.5.2 #103

Workflow file for this run

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