Skip to content

Merge pull request #67 from brave/renovate/actions-checkout-4-x #112

Merge pull request #67 from brave/renovate/actions-checkout-4-x

Merge pull request #67 from brave/renovate/actions-checkout-4-x #112

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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Install pipenv
run: pip install pipenv
- name: Setup Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.10"
cache: "pipenv"
- name: Install packages
run: pipenv install --dev
- name: Lint
run: pipenv run lint
- name: Pytest
run: pipenv run pytest