Skip to content

Merge pull request #15 from richardogoma/dependabot/pip/requests-2.32.2 #23

Merge pull request #15 from richardogoma/dependabot/pip/requests-2.32.2

Merge pull request #15 from richardogoma/dependabot/pip/requests-2.32.2 #23

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application setup with GitHub actions
on:
[push]
jobs:
build:
env:
rapid_api_key: ${{ secrets.rapid_api_key }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
make install
- name: Lint with pylint
run: |
make lint
- name: Test with pytest
run: |
make test
- name: Format code with black
run: |
make format