Indent code blocks to make it part of ordered list #5003
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: CI (Lux) | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/CommonCI.yml" | |
| - "src/**" | |
| - "ext/**" | |
| - "test/**" | |
| - "Project.toml" | |
| - ".github/workflows/CI.yml" | |
| - "lib/LuxTestUtils/**" | |
| - "lib/LuxCore/**" | |
| - "lib/MLDataDevices/**" | |
| - "lib/WeightInitializers/**" | |
| - "lib/LuxLib/**" | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1.10" | |
| - "1.11" | |
| os: | |
| - ubuntu-latest | |
| test_group: | |
| - "core_layers" | |
| - "normalize_layers" | |
| - "recurrent_layers" | |
| - "autodiff" | |
| - "misc" | |
| - "reactant" | |
| - "extras" | |
| uses: ./.github/workflows/CommonCI.yml | |
| with: | |
| julia_version: ${{ matrix.version }} | |
| project: "." | |
| test_args: "BACKEND_GROUP=CPU LUX_TEST_GROUP=${{ matrix.test_group }}" | |
| os: ${{ matrix.os }} | |
| local_dependencies: "lib/MLDataDevices,lib/WeightInitializers,lib/LuxLib,lib/LuxCore" | |
| local_test_dependencies: "lib/MLDataDevices,lib/LuxTestUtils,lib/LuxLib,lib/LuxCore" | |
| downgrade: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| test_group: | |
| - "core_layers" | |
| - "normalize_layers" | |
| - "recurrent_layers" | |
| - "autodiff" | |
| - "misc" | |
| - "reactant" | |
| - "extras" | |
| uses: ./.github/workflows/CommonCI.yml | |
| with: | |
| julia_version: "1.11" | |
| project: "." | |
| downgrade_testing: true | |
| test_args: "BACKEND_GROUP=CPU LUX_TEST_GROUP=${{ matrix.test_group }}" | |
| local_dependencies: "lib/MLDataDevices,lib/WeightInitializers,lib/LuxLib,lib/LuxCore" | |
| local_test_dependencies: "lib/MLDataDevices,lib/LuxTestUtils,lib/LuxLib,lib/LuxCore" |