Skip to content

Recurring Build Check #14

Recurring Build Check

Recurring Build Check #14

Workflow file for this run

name: Recurring Build Check
on:
schedule:
# Runs at 10:00 UTC every Sunday
- cron: "0 10 * * 0"
push:
branches:
- main
workflow_dispatch:
jobs:
build-check:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
lfs: true
- name: Install Docker
uses: docker/setup-docker-action@v4
- name: Build and test DevContainer
uses: devcontainers/[email protected]
with:
push: never
imageName: vsctex
runCmd: |
if [[ "$(service --status-all 2>&1)" != *"[ ? ] devContainerService"* ]]; then exit 1; fi
- name: Upload resulting document
uses: actions/upload-artifact@v4
with:
name: main.pdf
path: ./main.pdf
if-no-files-found: 'error'
retention-days: 14
compression-level: 9