[automated] Update metadata from Papers with Code #4264
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-build | |
on: | |
pull_request: | |
branches: | |
- master | |
# only run one at a time per branch | |
concurrency: | |
group: check-build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-build: | |
runs-on: | |
labels: ubuntu-latest-m | |
steps: | |
- name: install hugo | |
run: wget https://github.com/gohugoio/hugo/releases/download/v0.118.2/hugo_extended_0.118.2_linux-amd64.deb && sudo dpkg -i hugo_extended*.deb | |
- name: update | |
run: sudo apt-get update | |
- name: install other deps | |
run: sudo apt-get install -y jing bibutils openssh-client rsync libyaml-dev libpython3-dev | |
- uses: actions/checkout@v3 | |
- name: build | |
run: make check site |