aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 1d723d3fea301968c818d25110587f481672d164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: build

on:
  push:
  pull_request:
  schedule:
    - cron: 33 21 * * */7

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