Chore(deps): Bump requests from 2.32.3 to 2.32.4 in /.github/scripts/readme_svgs in the pip group across 1 directory #512
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: 🕸️ Web | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: ${{ matrix.config.name }} - Build | |
| runs-on: ${{ matrix.config.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - { name: "Web Latest", os: ubuntu-latest, build_type: "Release" } | |
| steps: | |
| - uses: mymindstorm/setup-emsdk@v14 | |
| - name: Checkout atta | |
| uses: actions/checkout@v5 | |
| - name: Configure | |
| run: | | |
| mkdir build | |
| cd build | |
| emcmake cmake .. | |
| - name: Build | |
| run: cmake --build build --parallel --config ${{ matrix.config.build_type }} |