Skip to content

Bump linode-api4 from 5.18.0 to 5.19.0 #117

Bump linode-api4 from 5.18.0 to 5.19.0

Bump linode-api4 from 5.18.0 to 5.19.0 #117

Workflow file for this run

name: Run Tests
on: [ push, pull_request, workflow_dispatch ]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: update packages
run: sudo apt-get update -y
- name: install make
run: sudo apt-get install -y build-essential
- name: setup python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: install dependencies
run: make getdeps && pip3 install -r requirements-dev.txt
- name: run tests
run: make test