Chore(deps): Bump requests from 2.32.3 to 2.32.4 in /.github/scripts/readme_svgs in the pip group across 1 directory #548
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: 🐧 Linux | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: ${{ matrix.config.name }} - Build and test | |
| runs-on: ${{ matrix.config.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - { name: "Ubuntu g++", os: ubuntu-latest, compiler: "g++" } | |
| - { name: "Ubuntu clang++", os: ubuntu-latest, compiler: "clang++" } | |
| steps: | |
| - name: Checkout atta | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install cmake xorg-dev curl | |
| - name: Build | |
| run: ./build.sh --jobs 2 --compiler ${{ matrix.config.compiler }} | |
| - name: Test | |
| run: ctest | |
| working-directory: build/release |