Skip to content

feat: add transpose layout test #369

feat: add transpose layout test

feat: add transpose layout test #369

Workflow file for this run

name: Build
on:
push:
branch: 'master'
paths-ignore:
- '**.md'
- 'LICENSE'
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
type: [debug, release]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: build ${{ matrix.type }}
run: make TYPE=${{ matrix.type }}
- name: test ${{ matrix.type }}
run: make test-all TYPE=${{ matrix.type }}