Merge pull request #67 from brave/renovate/actions-checkout-4-x #112
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: 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 |