Skip to content

GHA: Build and Publish to Public ECR and Build Nix #38

GHA: Build and Publish to Public ECR and Build Nix

GHA: Build and Publish to Public ECR and Build Nix #38

Workflow file for this run

name: Pull Request
on: [ pull_request ]
jobs:
lint_and_units:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v4
with:
go-version: '1.17'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.42
- name: run lint
run: ./scripts/runLint.sh
- name: run unit tests
run: ./scripts/runUnitTests.sh
acceptance:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: run acceptance tests
run: ./scripts/runIntegrationAcceptance.sh
performance:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: run performance tests
run: ./scripts/runIntegrationPerformance.sh
fault_injection:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: run fault injection tests
run: ./scripts/runIntegrationFaultInjection.sh
meteor:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: run meteor tests
run: ./scripts/runIntegrationMeteor.sh
blackbox:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: run blackbox tests
run: ./scripts/runBlackboxTests.sh