Skip to content

fix json recommended_action naming #276

fix json recommended_action naming

fix json recommended_action naming #276

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
- '!release-**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
basic:
name: Run tests
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: "true"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# - uses: wagoid/commitlint-github-action@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Dependency cache
uses: actions/cache@v3
id: cache
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('./**/*.csproj') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: dotnet restore
- name: Run tests
run: dotnet test
env:
STREAM_API_SECRET: ${{ secrets.STREAM_API_SECRET }}
STREAM_API_KEY: ${{ secrets.STREAM_API_KEY }}