aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: d69f3eb769c8a6098af4074a0ad1b99f423045a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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