Skip to content

Update actions/checkout digest to 11bd719 #80

Update actions/checkout digest to 11bd719

Update actions/checkout digest to 11bd719 #80

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install pipenv
run: pip install pipenv
- name: Setup Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: "3.8"
cache: "pipenv"
- name: Install packages
run: pipenv install --dev
- name: Lint
run: pipenv run lint
- name: Pytest
run: pipenv run pytest