Skip to content

change action order

change action order #3

Workflow file for this run

name: Pylint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Running unit tests with pytest
run: pytest
- name: Analyzing the code with pylint
run: pylint pyOxygenSCPI