Merge pull request #294 from lkocman/tw_cloud #981
This file contains hidden or 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: Jekyll site CI - build only | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: opensuse/leap:16.0 | |
| steps: | |
| - name: Install system dependencies | |
| run: zypper -n install gcc-c++ git-core make ruby-devel 'rubygem(bundler)' | |
| - uses: actions/checkout@v6 | |
| - name: Install random dependencies | |
| run: bundle install | |
| - name: Build site | |
| run: jekyll build --future |