Add GitHub CI workflow
This commit is contained in:
parent
a1126395e3
commit
ab051663dc
2 changed files with 22 additions and 0 deletions
19
.github/workflows/build.yml
vendored
Normal file
19
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Build
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Python 3.8
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Install dependencies
|
||||
run: pip install -r dev-requirements.txt
|
||||
- name: Run tests
|
||||
run: bash ./scripts/test.sh
|
|
@ -1,2 +1,5 @@
|
|||
# todoist-github
|
||||
|
||||
![](https://github.com/RealOrangeOne/todoist-github/workflows/Build/badge.svg)
|
||||
|
||||
Import assigned issues and PRs into Todoist
|
||||
|
|
Reference in a new issue