Collect code coverage on all unit test runs #389
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: CI | |
on: [push] | |
env: | |
UIPATHCLI_BASE_VERSION: "v1.1" | |
GO_VERSION: "1.22.2" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
UIPATHCLI_VERSION: ${{ steps.version.outputs.UIPATHCLI_VERSION }} | |
env: | |
CGO_ENABLED: "0" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Version | |
id: version | |
run: | | |
UIPATHCLI_VERSION=$(./version.sh "$UIPATHCLI_BASE_VERSION") | |
echo "UIPATHCLI_VERSION=$(echo $UIPATHCLI_VERSION)" >> $GITHUB_ENV | |
echo "UIPATHCLI_VERSION=$(echo $UIPATHCLI_VERSION)" >> $GITHUB_OUTPUT | |
- name: Build | |
run: go build -ldflags="-X github.com/UiPath/uipathcli/commandline.Version=$UIPATHCLI_VERSION" . | |
- name: Lint | |
run: | | |
go install github.com/golangci/golangci-lint/cmd/[email protected] | |
golangci-lint run | |
- name: Package | |
run: ./build.sh && ./package.sh | |
- name: Upload packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages | |
path: build/packages/ | |
if-no-files-found: error | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Test | |
run: go test -coverprofile="coverage.out" -coverpkg "github.com/UiPath/uipathcli,github.com/UiPath/uipathcli/auth,github.com/UiPath/uipathcli/cache,github.com/UiPath/uipathcli/commandline,github.com/UiPath/uipathcli/config,github.com/UiPath/uipathcli/executor,github.com/UiPath/uipathcli/log,github.com/UiPath/uipathcli/output,github.com/UiPath/uipathcli/parser,github.com/UiPath/uipathcli/plugin,github.com/UiPath/uipathcli/plugin/digitizer,github.com/UiPath/uipathcli/plugin/orchestrator,github.com/UiPath/uipathcli/utils" ./... | |
- name: Coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
go install github.com/mattn/goveralls@latest | |
goveralls -coverprofile="coverage.out" -service="github" -parallel -flagname="uipathcli-${{ matrix.os }}" | |
tests_completed: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Complete Coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
go run github.com/mattn/goveralls -parallel-finish | |
publish_pages: | |
needs: [build, tests_completed] | |
permissions: | |
pages: write | |
id-token: write | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download packages | |
uses: actions/download-artifact@v4 | |
with: | |
name: packages | |
path: build/packages/ | |
- name: Generate commands | |
run: | | |
tar -xzvf build/packages/uipathcli-linux-amd64.tar.gz | |
./uipath commands show > documentation/commands.json | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: 'documentation' | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 | |
release: | |
needs: [build, tests_completed] | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
env: | |
UIPATHCLI_VERSION: ${{ needs.build.outputs.UIPATHCLI_VERSION }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download packages | |
uses: actions/download-artifact@v4 | |
with: | |
name: packages | |
path: build/packages/ | |
- name: Publish | |
run: ./publish.sh "$UIPATHCLI_VERSION" | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |