Correct factual point in determine_the_observation_level_of_a_data_se… #800
Workflow file for this run
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 and Push | |
| on: ["push", "pull_request"] | |
| jobs: | |
| build_job: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby: ['3.4.2'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Build the page | |
| run: bundle exec jekyll build | |
| - name: Check for broken links | |
| run: "bundle exec htmlproofer --assume-extension --allow-hash-href ./_site || true" | |
| - name: Push to GH Pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| if: github.ref == 'refs/heads/source' && github.event_name == 'push' | |
| with: | |
| folder: _site | |
| branch: master |