Skip to content

Adding hx-headers-* server-side processing to hx-headers #85

Adding hx-headers-* server-side processing to hx-headers

Adding hx-headers-* server-side processing to hx-headers #85

Workflow file for this run

name: Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test -c Release --no-build --verbosity normal
- name: Pack
run: dotnet pack -c Release -o ./nupkgs --no-build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
path: ./nupkgs/*