Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# These owners will be automatically requested for review on pull requests
* @JaggerJo
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Description

<!-- Please describe the changes this PR introduces. -->

## Related Issue

<!-- Link to the related issue, e.g. Fixes #123 -->

## Checklist

- [ ] I have tested my changes locally
- [ ] My changes build without errors
- [ ] All existing tests pass
- [ ] I have added tests for new functionality (if applicable)
16 changes: 10 additions & 6 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: Build and test
name: Build and Test

on:
pull_request:
branches: [ master ]
branches: [ main, master ]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
build:
Expand All @@ -14,21 +18,21 @@ jobs:
run: sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer/

- uses: actions/checkout@v4
- name: Setup .NET

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.x.x

- name: install workloads
- name: Install workloads
run: dotnet workload restore src/Avalonia.FuncUI.sln

- name: Restore dependencies
run: dotnet restore src/Avalonia.FuncUI.sln

- name: Build
run: dotnet build src/Avalonia.FuncUI.sln --no-restore

- name: Test
run: dotnet test src/Avalonia.FuncUI.sln --no-build --verbosity normal


Loading