-
Notifications
You must be signed in to change notification settings - Fork 554
42 lines (32 loc) · 935 Bytes
/
lint.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
on: ["push", "pull_request"]
name: linting
# This limits the workflow to 1 active run at any given time for a specific branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
ETHERSCAN_TOKEN: 9MKURTHE8FNA9NRUUJBHMUEVY6IQ5K1EGY
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WEB3_INFURA_PROJECT_ID: 44c6300c5e5b4b2da5fc42b06bf18a8e
jobs:
linting:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
job: [lint, docs-local]
experimental: [false]
include:
- job: docs-external
experimental: true
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Tox
run: pip install tox
- name: Run Tox
run: tox -e ${{ matrix.job }}
continue-on-error: ${{ matrix.experimental }}