Skip to content

Update baseline pointer → baseline-csharp-roslyn-Visual-Studio-2022-Version-17.11-srcml-1.1.0 #19

Update baseline pointer → baseline-csharp-roslyn-Visual-Studio-2022-Version-17.11-srcml-1.1.0

Update baseline pointer → baseline-csharp-roslyn-Visual-Studio-2022-Version-17.11-srcml-1.1.0 #19

Workflow file for this run

name: Self-test
on:
push:
branches: [develop]
pull_request:
permissions:
contents: read
jobs:
grouper-tests:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Run unittests
run: python3 -m unittest discover -s tests -v
shellcheck:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- name: shellcheck
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
shellcheck scripts/*.sh
yamllint:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- name: Validate workflow YAML
run: |
pip install yamllint
yamllint -d '{extends: default, rules: {line-length: disable, truthy: {check-keys: false}, comments: {min-spaces-from-content: 1}, document-start: disable}}' .github/workflows/