Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

build(deps): bump the dependencies group with 2 updates #765

build(deps): bump the dependencies group with 2 updates

build(deps): bump the dependencies group with 2 updates #765

Workflow file for this run

name: test
on:
push:
branches:
- "**"
paths:
- "**"
- "!/docs/**"
jobs:
linux:
runs-on: ubuntu-latest
env:
ContinuousIntegrationBuild: true
steps:
- name: Checkout branch
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Setup dotnet tool
run: dotnet tool restore
- name: Install dependencies
run: dotnet restore
- name: format check
run: dotnet format --verify-no-changes
- name: Test
run: dotnet test --filter "FullyQualifiedName~Omnius.Axus"
windows:
runs-on: windows-latest
env:
ContinuousIntegrationBuild: true
steps:
- name: Checkout branch
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Test
run: dotnet test --filter "FullyQualifiedName~Omnius.Axus"