Skip to content

fix(avro)!: support named type references #68

fix(avro)!: support named type references

fix(avro)!: support named type references #68

Workflow file for this run

name: Build & Test
on:
push:
branches: [ vnext ]
paths:
- 'src/**'
- 'test/**'
- '!**/*.md'
pull_request:
branches: [ vnext ]
paths:
- 'src/**'
- 'test/**'
- '!**/*.md'
workflow_dispatch:
jobs:
obfuscan:
if: github.event_name == 'pull_request'
name: Obfuscan
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
issues: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Scan PR diff
uses: ByteBardOrg/obfuscan-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fail-on: block
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
include-prerelease: true
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal