f7a1d98d8a
* Add affected usage with tag math * use this branch as a test branch * adjust test * fix github action * build refactor to get affected work * Lazy affected * put if statement on job * add conditions around build and publish for linux * affected tests and small refactor * fmt * verbose * full checkout * more testing and made things more clear * adjust installer test branch * add comments * use zip on release * detect main release * use right trigger for release * fix build * maybe fix if statement...version env var don't work * use current branch, not target branch * test installer should be stored * write to github action env vars * use the env var correctly * format * set the output version as before --------- Co-authored-by: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com>
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
name: .NET Build
|
|
|
|
on:
|
|
pull_request: # Run build on every pull request that is not to main
|
|
branches-ignore:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
outputs:
|
|
version: ${{ steps.set-version.outputs.version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 8.0.4xx # Align with global.json (including roll forward rules)
|
|
|
|
- name: Cache Nuget
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.nuget/packages
|
|
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
|
|
|
|
- name: ⚒️ Run build
|
|
run: ./build.ps1 test
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 8.0.4xx # Align with global.json (including roll forward rules)
|
|
|
|
- name: Cache Nuget
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.nuget/packages
|
|
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
|
|
|
|
- name: ⚒️ Run Build on Linux
|
|
run: ./build.sh build-linux
|
|
|
|
- name: ⚒️ Run tests
|
|
run: ./build.sh test-only
|
|
|
|
- name: Upload coverage reports to Codecov with GitHub Action
|
|
uses: codecov/codecov-action@v5
|
|
with:
|
|
file: Converters/**/coverage.xml
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|