Init 2024 Gleam #1
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: 2024 Gleam Tests | |
| on: | |
| push: | |
| paths: | |
| - "2024/**/*" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Gleam | |
| run: | | |
| curl -fSsL https://gleam.run/install.sh | sh | |
| export PATH=$HOME/.gleam/bin:$PATH | |
| - name: Verify Gleam Installation | |
| run: gleam --version | |
| - name: Run Gleam tests | |
| working-directory: ./2024 | |
| run: gleam test |