Skip to content

Commit 69e6f18

Browse files
committed
Fix linting warnings and errors
1 parent bbaf905 commit 69e6f18

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
version: 2
23
updates:
34
- package-ecosystem: "github-actions"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
id: node
4040
shell: bash
4141
run: |
42-
if [ ${{ matrix.type }} = etherlime ]; then
43-
echo 'version=10.17.0' >> $GITHUB_OUTPUT
42+
if [ "${{ matrix.type }}" = "etherlime" ]; then
43+
echo 'version=10.17.0' >> "$GITHUB_OUTPUT"
4444
else
45-
echo 'version=lts/*' >> $GITHUB_OUTPUT
45+
echo 'version=lts/*' >> "$GITHUB_OUTPUT"
4646
fi
4747
- name: Set up Node
4848
uses: actions/setup-node@v3

.github/workflows/pytest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Pytest
23

34
defaults:
@@ -14,7 +15,7 @@ on:
1415
branches: [main, dev]
1516
schedule:
1617
# run CI every day even if no PRs/merges occur
17-
- cron: '0 12 * * *'
18+
- cron: '0 12 * * *'
1819

1920
jobs:
2021
tests:
@@ -35,4 +36,4 @@ jobs:
3536
pip install solc-select
3637
- name: Run Tests
3738
run: |
38-
pytest tests/test_metadata.py
39+
pytest tests/test_metadata.py

0 commit comments

Comments
 (0)