Skip to content

Commit

Permalink
Migrate to github actions from travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangRongLin committed Nov 27, 2021
1 parent a05b04c commit b6ca3e4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: linkcheck

on:
push:
branches:
- master
pull_request:

jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: set up python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'
cache: 'pip'

- name: install dependencies
run: pip install -r requirements.txt

- name: Verify links
run: python linkcheck.py
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit b6ca3e4

Please sign in to comment.