Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python Book

on: [push, pull_request]

jobs:
tex:
name: Checks and Build
runs-on: ubuntu-latest
steps:
- name: Checkout to master
uses: actions/checkout@master

- name: Check Indentation
run: make indent

- name: Syntex Suggestions
run: make checks

- name: Build PDFLaTeX
run: make build

- name: Analysis (git diff)
if: failure()
run: git diff

- uses: actions/upload-artifact@v1
with:
name: artifacts
path: .
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

Loading