fix: Don't notify on E2E for ProjectCreated #516
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install system dependencies | |
run: sudo apt-get update && sudo apt-get install -y libsasl2-dev | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- name: Run Unit Tests | |
run: cargo test --lib | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
with: | |
cluster_name: "k8scluster" | |
- name: Run Integration Tests | |
env: | |
PASSWORD: ${{ secrets.PASSWORD }} | |
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
run: ./test/expect | |