From 8516844d00530b82698236a16c19c77a6e5fe212 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 28 Dec 2020 14:25:37 +0000 Subject: Add tentative support for Github Actions --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..d69f3eb --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Test paper2reMarkable + +on: push + +jobs: + p2r-test: + name: Unit tests for paper2remarkable + runs-on: ubuntu-xenial + + 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 -- cgit v1.2.3