Bump MSTest.TestAdapter from 3.6.4 to 3.7.0 in /test #146
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 Ubuntu | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
pull_request: | |
branches-ignore: | |
- "main" | |
env: | |
GH_TOKEN: ${{ secrets.token }} | |
jobs: | |
test: | |
name: Test on Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ${{ github.repository }} repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }} | |
ref: ${{ github.ref }} | |
token: ${{ env.GH_TOKEN }} | |
- name: Run test | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "6.0.x" | |
- run: dotnet test test/test.csproj |