Bump linode-api4 from 5.38.0 to 5.39.0 #239
This file contains hidden or 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: Continues Integration | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| lint-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v6 | |
| - name: setup python 3 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: install dependencies | |
| run: make getdeps && pip3 install -r requirements-dev.txt | |
| - name: run tests | |
| run: make test | |
| - name: run linter | |
| run: make lint |