Bump System.Reflection.Emit.Lightweight from 4.3.0 to 4.7.0 #415
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: CI Compile checks | |
on: [push, pull_request] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Checkout emux submodule | |
run: git submodule update --init --recursive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Compile project | |
run: dotnet build -c release osu.Game.Rulesets.Gamebosu.sln | |
- name: Upload Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: osu.Game.Rulesets.Gamebosu.dll | |
path: "osu.Game.Rulesets.Gamebosu/bin/Release/netstandard2.1" | |
retention-days: 30 |