Skip to content

chore: add test CI

chore: add test CI #8

Workflow file for this run

name: SmartIR Build and Test CI
on: ["push", "pull_request"]
jobs:
smartir-build-test:
name: Test
runs-on: ubuntu-latest
container:
image: smartir/smart-ir-builder:latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
submodules: "false"
# Prerequisite
- name: Code format check
working-directory: ./ir_cli
run: make fmt-check
shell: bash
- name: e2e tests
working-directory: ./ir_cli
shell: bash
run: make test