Skip to content

Commit 3bd988f

Browse files
committed
CI: Use GitHub Actions
1 parent efd39d0 commit 3bd988f

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v1
13+
with:
14+
python-version: "3.7"
15+
- name: Install dependencies
16+
run: |
17+
sudo apt-get update -qq
18+
sudo apt-get install -yy default-jre-headless
19+
pip install html5validator
20+
- name: Validate HTML
21+
run: html5validator --show-warnings

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)