fix(deps): bump ImGui.NET from 1.78.0 to 1.90.0.1 #200
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
dotnet: ['5.0.x'] | |
configuration: ['Release'] | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- name: Setup dotnet env 🏗 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
- name: Install dependencies 👨🏻💻 | |
run: dotnet restore | |
- name: Run build 🛠 | |
run: dotnet build --nologo --configuration ${{ matrix.configuration }} | |
- name: Run tests 🧪 | |
run: dotnet test --nologo --configuration ${{ matrix.configuration }} |