mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 06:44:36 +03:00
3778d2058e
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
590 B
YAML
30 lines
590 B
YAML
name: Code Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'v2rayN/ServiceLib/Services/CoreConfig/**'
|
|
- 'v2rayN/ServiceLib/Handler/Fmt/**'
|
|
- '.github/workflows/test.yml'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
submodules: 'recursive'
|
|
fetch-depth: '0'
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v5.2.0
|
|
with:
|
|
dotnet-version: '8.0.x'
|
|
|
|
- name: Test Code
|
|
working-directory: ./v2rayN
|
|
run: dotnet test ./ServiceLib.Tests
|