Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Update README.md

Update README.md #212

Workflow file for this run

name: Tests
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
permissions:
contents: read
jobs:
static-analysis:
uses: ./.github/workflows/static-analysis.yaml
if: ( contains(github.repository, '/platform-aware-scheduling') )
static-analysis-local:
uses: ./.github/workflows/static-analysis.yaml
if: ( !contains(github.repository, '/platform-aware-scheduling') && github.event_name == 'push' )
with:
runson: self-hosted
go-build-and-test:
uses: ./.github/workflows/go-build-and-test.yml
if: ( contains(github.repository, '/platform-aware-scheduling') )
go-build-and-test-local:
uses: ./.github/workflows/go-build-and-test.yml
if: ( !contains(github.repository, '/platform-aware-scheduling') && github.event_name == 'push' )
with:
runson: self-hosted
end-to-end-test:
uses: ./.github/workflows/end-to-end-test.yaml
if: ( contains(github.repository, '/platform-aware-scheduling') && github.event_name == 'pull_request' )
end-to-end-test-local:
uses: ./.github/workflows/end-to-end-test.yaml
if: ( !contains(github.repository, '/platform-aware-scheduling') && github.event_name == 'pull_request' )
with:
runson: self-hosted-kind
cleanup: true
isLocal: "true"
trivy-scan-local:
uses: ./.github/workflows/trivy-scan.yaml
if: ( !contains(github.repository, '/platform-aware-scheduling') && github.event_name == 'push' )
with:
runson: self-hosted