Skip to content

Create core package #21

Create core package

Create core package #21

Workflow file for this run

on:
pull_request:
branches:
- "main"
paths:
- "lib/Dequeueable.AmazonSQS/**"
- "tests/Dequeueable.AmazonSQS.**/"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x.x"
- name: Materialize Signing Key
id: write_sign_key_file
uses: timheuer/base64-to-file@v1
with:
fileName: "Dequeueable.snk"
fileDir: ${{ github.workspace }}
encodedString: ${{ secrets.SIGNING_KEY }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity minimal