We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 234b520 commit 9a63603Copy full SHA for 9a63603
2 files changed
.github/workflows/deploy.yml
@@ -0,0 +1,24 @@
1
+name: Deploy blog
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Python 3.8
14
+ uses: actions/setup-python@v2
15
+ with:
16
+ python-version: 3.8
17
+ - name: Install dependencies
18
+ run: |
19
+ python -m pip install --upgrade pip wheel setuptools
20
+ python -m pip install -r requirements.txt
21
+ - name: Lint
22
+ run: blog lint
23
+ - name: Deploy
24
+ run: blog deploy
.travis.yml
0 commit comments