Skip to content

Bump target framework to net8.0 #48

Bump target framework to net8.0

Bump target framework to net8.0 #48

name: Test Pull Request (Dotnet Core)
on:
merge_group:
pull_request:
branches:
- main
paths:
- 'dotnet-core/**'
- '.github/workflows/test-pull-request-dotnet-core.yml'
concurrency:
# only one instance of test suite per PR at one time
group: pr-${{ github.event.number }}
cancel-in-progress: true
jobs:
smoke:
name: Smoke Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 3
matrix:
builder:
- 'paketobuildpacks/builder-jammy-base:latest'
- 'paketobuildpacks/builder-jammy-full:latest'
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Checkout
uses: actions/checkout@v4
- name: Test .NET Samples
run: |
./scripts/smoke.sh --suite dotnet-core \
--builder ${{ matrix.builder }}