Merge pull request #297 from hendricius/no_validate_main

Prevent running validate when pushing on main
This commit is contained in:
cedounet
2023-12-02 16:35:22 +00:00
committed by GitHub

View File

@@ -1,5 +1,11 @@
name: Validate LaTeX Document
on: [ push, pull_request ]
on:
push:
branches:
- '**' # All branches
- '!main' # But main as will do it anyway and more in release_book
pull_request:
jobs:
test_building_book:
runs-on: ubuntu-latest