600 Feedback on Chapter 6: Data Engineering #729
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for build (Ubuntu) | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Install TinyTeX | |
run: quarto install tinytex | |
- name: Build on Ubuntu | |
run: quarto render | |
- name: Upload artifact from Ubuntu | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: _book-ubuntu | |
path: _book | |