Merge pull request #69 from terassyi/bump-v0.1.0 #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unit test | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Build Dependencies | |
run: make setup-grpc | |
- name: Fmt | |
run: make fmt | |
- name: Run Unit Test | |
run: make unit-test | |
integration-test: | |
name: Integration Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Build Dependencies | |
run: make setup-grpc | |
- name: Generate CRD manifests | |
run: make crd | |
- name: Install Kubernetes Dependencies | |
run: |- | |
make -C e2e setup | |
- name: Run Integration Test | |
run: make integration-test |