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