diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-28 15:23:12 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-28 15:23:12 +0000 |
| commit | 103fc916f7c4b3ea2a1cfdc470e7694b6d6d21bc (patch) | |
| tree | ec804b5bf5f15308c5a85928e4ce009bd9c8eb06 /.github/workflows | |
| parent | Bump version and update changelog and readme (diff) | |
| parent | Merge branch 'master' into feature/gh_actions (diff) | |
| download | paper2remarkable-103fc916f7c4b3ea2a1cfdc470e7694b6d6d21bc.tar.gz paper2remarkable-103fc916f7c4b3ea2a1cfdc470e7694b6d6d21bc.zip | |
Merge branch 'feature/gh_actions'
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..bf8972e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: build + +on: push + +jobs: + p2r-test: + name: Unit tests for paper2remarkable + runs-on: ubuntu-16.04 + + steps: + - name: Install Python 3.6 + uses: actions/setup-python@v2 + with: + python-version: '3.6' + + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run unit test script + run: ./.github/scripts/test_p2r.sh + shell: bash |
