Skip to content

test touch

test touch #22

Workflow file for this run

name: Doctest build
on:
push:
paths-ignore:
- 'locale/**'
pull_request:
paths-ignore:
- 'locale/**'
jobs:
doctest:
runs-on: ubuntu-latest
name: Doctest
services:
image: docker
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python 3.7
uses: actions/setup-python@v3
with:
python-version: 3.7
- name: Pip upgrade
run: |
python -m pip install --upgrade pip
- name: Build test code
run: |
make -f docker.mk doctest
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: Doctest build
path: ./build/doctest/output.txt