Release/2.18.1 #88
Workflow file for this run
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: Validate Project | |
on: [pull_request] | |
jobs: | |
validate-project: | |
# ubuntu-latest provides many dependencies. | |
# See: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit | |
uses: actions/checkout@v2 | |
- name: Install CICEE | |
run: dotnet tool install -g cicee || dotnet tool update -g cicee | |
- name: Execute verification script - Validate source | |
run: cicee exec -c ci/bin/validate.sh | |
env: | |
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}} | |
NUGET_SOURCE: ${{secrets.NUGET_SOURCE}} | |
RELEASE_ENVIRONMENT: false | |
- name: Execute compose script - Perform dry-run composition | |
run: cicee exec -c ci/bin/compose.sh | |
env: | |
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}} | |
NUGET_SOURCE: ${{secrets.NUGET_SOURCE}} | |
RELEASE_ENVIRONMENT: false |