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
40 changes: 31 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,16 @@ jobs:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
- macos-13
- macos-14
- macos-15
- ubuntu-22.04
- ubuntu-22.04-arm
- ubuntu-24.04
- ubuntu-24.04-arm
- windows-11-arm
- windows-2022
- windows-2025

permissions:
contents: read
Expand Down Expand Up @@ -79,7 +86,7 @@ jobs:
- run: dotnet r pack -- --no-build --version-suffix ${{ env.VERSION_SUFFIX }}

- name: Upload artifacts
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04'
uses: actions/upload-artifact@v4.6.2
with:
name: nupkg
Expand All @@ -104,18 +111,33 @@ jobs:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
- macos-13
- macos-14
- macos-15
- ubuntu-22.04
- ubuntu-22.04-arm
- ubuntu-24.04
- ubuntu-24.04-arm
- windows-11-arm
- windows-2022
- windows-2025
shell:
- default
- bash
- pwsh
exclude:
- os: windows-latest
- os: windows-11-arm
shell: bash
- os: windows-2022
shell: bash
- os: windows-2025
shell: bash
include:
- os: windows-latest
- os: windows-11-arm
shell: C:\Program Files\Git\bin\bash.exe
- os: windows-2022
shell: C:\Program Files\Git\bin\bash.exe
- os: windows-2025
shell: C:\Program Files\Git\bin\bash.exe

permissions:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## Unreleased

- Build and test on each platform version available
- macOS 13
- macOS 14
- macOS 15
- Ubuntu 22.04
- Ubuntu 24.04
- Windows 2022
- Windows 2025
- Build and test on ARM
- Ubuntu 22.04
- Ubuntu 24.04
- Windows 11

## [0.6.0](https://github.com/xt0rted/dotnet-run-script/compare/v0.5.0...v0.6.0) - 2024-04-10

- Dropped support for .NET Core 3.1
Expand Down
Loading