Extend website #28
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: Test 2021 | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install and Build | |
| run: | | |
| cd 2021 | |
| make install-python-requirements | |
| make install-python-requirements-test | |
| make generate-site | |
| # check-links: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/setup-python@v5 | |
| # with: | |
| # python-version: '3.13' | |
| # - name: Checkout | |
| # uses: actions/checkout@v4 | |
| # - name: Install and Build | |
| # run: | | |
| # cd 2021 | |
| # make install-python-requirements | |
| # make install-python-requirements-test | |
| # make generate-site | |
| # - name: Links validation | |
| # run: | | |
| # cd 2021 | |
| # make check-links |