Skip to content

test: add continuous integration #3

test: add continuous integration

test: add continuous integration #3

Workflow file for this run

name: continuous integration
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
integration:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src
steps:
- uses: actions/checkout@v4
- name: Restore dotnet tools
run: dotnet tool restore
- name: Test for outdated dependencies
run: dotnet outdated --fail-on-updates
- name: Run automated tests
run: dotnet test ArwynFr.IntegrationTesting.Tests --settings .\runsettings.xml --results-directory TestResults