Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 026ba92

Browse files
committedAug 29, 2024·
Merge remote-tracking branch 'human-protocol/develop' into dashboard-release
2 parents c86f9a4 + cb33295 commit 026ba92

File tree

577 files changed

+10667
-7452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

577 files changed

+10667
-7452
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CVAT Exchange Oracle Lint
2+
3+
on:
4+
push:
5+
paths:
6+
- 'packages/examples/cvat/exchange-oracle/**'
7+
- '.github/workflows/ci-lint-cvat-exchange-oracle.yaml'
8+
9+
env:
10+
WORKING_DIR: ./packages/examples/cvat/exchange-oracle
11+
12+
defaults:
13+
run:
14+
working-directory: ./packages/examples/cvat/exchange-oracle
15+
16+
jobs:
17+
cvat-exo-lint:
18+
name: CVAT Exchange Oracle Lint
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-python@v5
23+
with:
24+
cache: 'pip'
25+
cache-dependency-path: ${{ env.WORKING_DIR }}/poetry.lock
26+
- run: python -m pip install poetry
27+
- uses: actions/setup-python@v5
28+
with:
29+
python-version: '3.10'
30+
cache: 'poetry'
31+
cache-dependency-path: ${{ env.WORKING_DIR }}/poetry.lock
32+
- run: poetry install --no-root --only dev
33+
- run: poetry run pre-commit run --all-files
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CVAT Recording Oracle Lint
2+
3+
on:
4+
push:
5+
paths:
6+
- 'packages/examples/cvat/recording-oracle/**'
7+
- '.github/workflows/ci-lint-cvat-recording-oracle.yaml'
8+
9+
env:
10+
WORKING_DIR: ./packages/examples/cvat/recording-oracle
11+
12+
defaults:
13+
run:
14+
working-directory: ./packages/examples/cvat/recording-oracle
15+
16+
jobs:
17+
cvat-exo-lint:
18+
name: CVAT Recording Oracle Lint
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-python@v5
23+
with:
24+
cache: 'pip'
25+
cache-dependency-path: ${{ env.WORKING_DIR }}/poetry.lock
26+
- run: python -m pip install poetry
27+
- uses: actions/setup-python@v5
28+
with:
29+
python-version: '3.10'
30+
cache: 'poetry'
31+
cache-dependency-path: ${{ env.WORKING_DIR }}/poetry.lock
32+
- run: poetry install --no-root --only lint
33+
- run: poetry run pre-commit run --all-files

0 commit comments

Comments
 (0)
Please sign in to comment.