Skip to content

Bump actions/checkout from 3 to 4 #107

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #107

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: pre-commit/[email protected]
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: pytest
run: pytest