Fenics 2026 update contact (#221) #833
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: Build website | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build website | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo apt-get install -y ruby-bundler | |
| name: Install prerequisites | |
| - uses: actions/checkout@v4 | |
| - run: sudo bundle install | |
| name: Install bundle | |
| - run: bundle exec jekyll build | |
| name: Build website |