Add max job count field in CRD resourcequotaclaim for limit job count in namespaces #120
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Run Tests | |
run: make test | |
- name: Convert coverage to lcov | |
uses: jandelgado/gcov2lcov-action@v1.0.9 | |
with: | |
infile: coverage.out | |
outfile: coverage.lcov | |
- name: Coveralls, publish coverage results | |
uses: coverallsapp/github-action@v2.3.0 | |
with: | |
github-token: ${{ secrets.github_token }} | |
path-to-lcov: coverage.lcov |