Skip to content

chore(deps): bump TextMateSharp.Grammars from 1.0.56 to 1.0.58 #100

chore(deps): bump TextMateSharp.Grammars from 1.0.56 to 1.0.58

chore(deps): bump TextMateSharp.Grammars from 1.0.56 to 1.0.58 #100

Workflow file for this run

name: CI Builds
on:
pull_request:
jobs:
release:
name: CI Build
strategy:
matrix:
kind: ['linux', 'windows', 'macOS']
include:
- kind: linux
os: ubuntu-latest
target: linux-x64
- kind: windows
os: windows-latest
target: win-x64
- kind: macOS
os: macos-latest
target: osx-x64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/[email protected]
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build
- name: Publish
run: dotnet publish SharpFM.csproj --runtime "${{ matrix.target }}" -c Debug