Reorganize Emblems tests #633
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: Continuous Integration | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
SYMBOL_PACKAGE: false | |
jobs: | |
build-and-deploy: | |
name: Build and deploy | |
env: | |
build-configuration: Release | |
runs-on: ubuntu-latest | |
container: ghcr.io/sliekens/gw2sdk/devcontainer:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: dotnet restore --locked-mode | |
- name: Test | |
run: dotnet test --no-restore --settings coverletArgs.runsettings | |
env: | |
ApiKeyBasic: ${{ secrets.API_TOKEN_BASIC }} | |
ApiKey: ${{ secrets.API_TOKEN_FULL }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
- name: Build | |
run: dotnet build --configuration ${{ env.build-configuration }} --no-restore | |
- name: Pack artifacts | |
run: dotnet pack --configuration ${{ env.build-configuration }} --no-build --output artifacts --version-suffix CI-$(date --utc '+%Y%m%d-%H%M%S') | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
path: artifacts | |
- name: Upload packages to GitHub Packages | |
run: dotnet nuget push artifacts/*.nupkg --source https://nuget.pkg.github.com/sliekens/index.json --api-key ${{secrets.GITHUB_TOKEN}} | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} |