Bump requests from 2.25.1 to 2.31.0 #21
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: Open Energi SDK for Python | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' # see setup.py | |
- name: Install Pandoc | |
run: sudo apt-get install -y pandoc | |
- name: Install some test/lint context with pip | |
run: pip install pytype flake8 pylint | |
- name: Install the SDK | |
run: make install | |
- name: Lint the source code | |
run: make lint-errors | |
- name: Run the tests and notebook | |
env: | |
OE_USERNAME: ${{ secrets.OE_USERNAME }} | |
OE_PASSWORD: ${{ secrets.OE_PASSWORD }} | |
run: make test nb-markdown |