Lines Matching +full:runs +full:- +full:on
2 on:
6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
7 # Ensure that only one commit will be running tests at a time on each PR
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
15 runs-on: ubuntu-22.04
18 - uses: actions/checkout@v4
20 - name: Setup Python
21 uses: actions/setup-python@v5
23 python-version: '3.10'
25 - name: Install Doxygen and Latex dependencies
27 sudo apt-get update
28 …sudo apt-get install doxygen texlive-xetex texlive-binaries texlive-lang-english latexmk fonts-fre…
30 - name: Install requirements
31 run: pip install -r scripts/gen_json/requirements.txt
33 - name: Run test