Fix wrong formatting! #130
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.3' | |
| bundler-cache: false # Désactive cache Bundler pour éviter conflit lockfile | |
| - name: Disable bundler frozen mode | |
| run: bundle config set --local frozen false | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Build with Jekyll | |
| run: bundle exec jekyll build |