Skip to content

main != master

main != master #19

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
jobs:
check_formatting:
runs-on: ubuntu-latest
name: Check Formatting
steps:
- uses: actions/checkout@v2
- run: |
dotnet tool restore
dotnet csharpier --check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
working-directory: AutomaticInterface
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: AutomaticInterface
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: AutomaticInterface
publish:
runs-on: ubuntu-latest
needs: test
if: success() && startsWith(github.ref, 'refs/heads/master')
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
working-directory: AutomaticInterface
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: AutomaticInterface
- name: Nuget
run: nuget push **\release\**\AutomaticInterface.*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}