Skip to content

Update style guide. Add SLATE comments. Drop ICL prefix/namespace. #13

Update style guide. Add SLATE comments. Drop ICL prefix/namespace.

Update style guide. Add SLATE comments. Drop ICL prefix/namespace. #13

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
icl_plasma:
timeout-minutes: 120
strategy:
matrix:
maker: [cmake]
device: [cpu]
fail-fast: false
runs-on: ${{ matrix.device }}
steps:
- uses: actions/checkout@v4
- name: Configure
run: .github/workflows/configure.sh ${{matrix.maker}} ${{matrix.device}}
- name: Build
run: .github/workflows/build.sh ${{matrix.maker}} ${{matrix.device}}
- name: Test
run: .github/workflows/test.sh ${{matrix.maker}} ${{matrix.device}}