Skip to content

Commit

Permalink
chore: add test CI
Browse files Browse the repository at this point in the history
Signed-off-by: i-zhen <[email protected]>
  • Loading branch information
i-zhen committed Dec 11, 2023
1 parent 0824d3d commit 3a323f6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/smartir_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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:v0.1.0
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

0 comments on commit 3a323f6

Please sign in to comment.