Skip to content

#256: fix INTL0202 not showing in lambda func #126

#256: fix INTL0202 not showing in lambda func

#256: fix INTL0202 not showing in lambda func #126

Workflow file for this run

name: CodingGuidelines Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
version: 0.1.10
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup dotnet SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
- name: Get Build Information
run: |
pwd
dotnet --info
dotnet --version
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -p:Version="${{ env.version }}" --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: dotnet pack
run: dotnet pack -p:Version="${{ env.version }}-ci-${{ github.run_number }}" -o ${{ github.workspace }}
- uses: actions/upload-artifact@v3
with:
path: ${{ github.workspace }}/*.nupkg
name: Intellitect.CodingGuidelines