Skip to content

Improvements v2

Improvements v2 #133

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
env:
YandexTrackerOptions__OAuthToken: ${{ secrets.YANDEXTRACKER_OAUTHTOKEN }}
YandexTrackerOptions__Organization: ${{ secrets.YANDEXTRACKER_ORGANIZATION }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Ensure Version Bump
uses: mindbox-cloud/github-actions/ensure-bump@master
with:
abstractionsPath: 'Mindbox.YandexTracker.Abstractions'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build ./Mindbox.YandexTracker.sln --configuration Release --no-restore /warnaserror
- name: Test
run: dotnet test --no-restore