1
0
Fork 0
mirror of https://github.com/quantum5/uwat.cc.git synced 2025-04-25 03:01:56 -04:00
uwat.cc/.github/workflows/build.yml
2019-11-07 14:40:46 -05:00

18 lines
404 B
YAML

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run syntax check
run: python check.py
- name: Build site
run: python build.py