From 4d3d32ee71e0bd3580be9457223d2c6a9adbf7b2 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 7 Jan 2022 00:27:43 +0300 Subject: workflows/basic: add some comments --- .github/workflows/basic.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 6adf3ac..cf6b234 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -9,6 +9,7 @@ on: workflow_dispatch: jobs: + # Check that project-clang-format.py works (and the C/C++ files are formatted). lint: runs-on: ubuntu-latest name: Linting @@ -18,6 +19,7 @@ jobs: - name: Run clang-format run: ./tools/project-clang-format.py + # Check that the most basic use-case works on different OSs. os: strategy: matrix: @@ -50,6 +52,7 @@ jobs: - name: Run example project run: ./.ci/run_foo.ps1 (Join-Path (Get-Location).Path install bin foo) + # Check that the most basic use-case works w/ different Python versions. python-versions: strategy: matrix: @@ -85,6 +88,7 @@ jobs: - name: Run example project run: ./.ci/run_foo.ps1 (Join-Path (Get-Location).Path install bin foo) + # Build a Python package and upload to PyPI. publish: # TODO: figure out how to add a dependency on the *toolsets workflows. needs: [lint, os, python-versions] -- cgit v1.2.3