-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (42 loc) · 1.38 KB
/
lint_check.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Lint Check
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
jobs:
lint_check:
name: ${{ matrix.python_version }} lint check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Set up python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ matrix.python_version }}-lint-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }}-v01
- name: Install premium_primitives with dev and test requirements (not using cache)
if: steps.cache.outputs.cache-hit != 'true'
run: |
python -m pip install -e .[dev]
- name: Install premium_primitives with no requirements (using cache)
if: steps.cache.outputs.cache-hit == 'true'
run: |
python -m pip install -e .[dev] --no-deps
- name: Run lint test
run: make lint