Skip to content

Commit 3ed317a

Browse files
authored
Merge pull request matplotlib#7 from QuLogic/group
Group things into subdirectories
2 parents 5960877 + 30c6d48 commit 3ed317a

File tree

9 files changed

+6
-6
lines changed

9 files changed

+6
-6
lines changed

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
uses: reviewdog/action-setup@v1
4949

5050
- name: Run caddy validate
51-
run: caddy validate
51+
run: caddy validate --config caddy/Caddyfile
5252

5353
- name: Run caddy fmt
54-
run: caddy fmt --overwrite
54+
run: caddy fmt --overwrite caddy/Caddyfile
5555

5656
- name: Run reviewdog
5757
uses: reviewdog/action-suggester@v1

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919

2020
- name: Install dependencies
2121
run: |
22-
pip install -r dev-requirements.txt
22+
pip install -r webhook/dev-requirements.txt
2323
git config --global user.name "GitHub CI Bot"
2424
git config --global user.email "[email protected]"
2525
2626
- name: Run tests
27-
run: pytest
27+
run: pytest webhook

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ serve:
66
mkdir -p sites
77
$(RUNTIME) run --rm -it \
88
-v $$PWD/sites:/srv:Z \
9-
-v $$PWD/Caddyfile:/etc/caddy/Caddyfile:ro,Z \
9+
-v $$PWD/caddy/Caddyfile:/etc/caddy/Caddyfile:ro,Z \
1010
-e SITE_DIR=/srv \
1111
-p 2015:2015 \
1212
$(CADDY_IMAGE):$(CADDY_VERSION) \
1313
caddy run --config /etc/caddy/Caddyfile --watch
1414

1515
fmt:
1616
$(RUNTIME) run --rm -it \
17-
-v $$PWD/Caddyfile:/etc/caddy/Caddyfile:Z \
17+
-v $$PWD/caddy/Caddyfile:/etc/caddy/Caddyfile:Z \
1818
$(CADDY_IMAGE):$(CADDY_VERSION) \
1919
caddy fmt --overwrite /etc/caddy/Caddyfile
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)