Rename workflow bitfinex-api-py-ci.yml to build.yml (for documentation purposes).

This commit is contained in:
Davide Casale
2024-04-08 16:58:15 +02:00
parent 735cf5bb19
commit 0f1e2bc284

26
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install bitfinex-api-py's dependencies
run: python -m pip install -r dev-requirements.txt
- name: Run pre-commit hooks (see .pre-commit-config.yaml)
uses: pre-commit/action@v3.0.1
- name: Run mypy to ensure correct type hinting
run: python -m mypy bfxapi