Skip to content

exercises/practice/anagram: add an append with instructions about the… #2513

exercises/practice/anagram: add an append with instructions about the…

exercises/practice/anagram: add an append with instructions about the… #2513

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Setup .NET
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852
with:
dotnet-version: "9.0.101"
- name: Run tests
run: pwsh bin/test.ps1
- name: Create test summary
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
with:
paths: build/**/results/**/*.xml
if: always()