diff --git a/.github/workflows/smartir_test.yml b/.github/workflows/smartir_test.yml new file mode 100644 index 0000000..61e56d6 --- /dev/null +++ b/.github/workflows/smartir_test.yml @@ -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 \ No newline at end of file