2022-02-08 22:45:09 +01:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
2022-04-01 21:36:25 +02:00
|
|
|
name: "continuous integration test"
|
2022-02-08 22:45:09 +01:00
|
|
|
|
|
|
|
# Controls when the workflow will run
|
|
|
|
on:
|
|
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
2022-03-10 10:34:17 +01:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2022-02-08 22:45:09 +01:00
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job called "build"
|
|
|
|
test:
|
|
|
|
# The type of runner that the job will run on
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
2022-02-09 14:18:21 +01:00
|
|
|
- name: "checkout"
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
2022-04-18 18:03:18 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-02-09 14:18:21 +01:00
|
|
|
|
2022-02-10 15:35:16 +01:00
|
|
|
- name: "install ghostscript"
|
|
|
|
run: sudo apt-get install -y ghostscript
|
|
|
|
|
|
|
|
- name: "setup TeX Live (via paolobrasolin)"
|
|
|
|
uses: paolobrasolin/setup-texlive-action@v1
|
2022-02-09 17:30:52 +01:00
|
|
|
with:
|
2022-04-05 14:28:09 +02:00
|
|
|
profile-path: ${{ github.workspace }}/.github/tex/profile.basic.txt
|
2022-02-10 15:35:16 +01:00
|
|
|
packages-path: ${{ github.workspace }}/.github/tex/packages.test.txt
|
2022-02-08 22:45:09 +01:00
|
|
|
|
|
|
|
- name: "test tikz-trackschematic"
|
2022-03-10 15:41:17 +01:00
|
|
|
run: ./build.sh --non-interactive --test --verbose
|