Skip to content

Add URLENCODE, FORMATNUMBER, BUILDROWSETFROMSTRING (#26) #16

Add URLENCODE, FORMATNUMBER, BUILDROWSETFROMSTRING (#26)

Add URLENCODE, FORMATNUMBER, BUILDROWSETFROMSTRING (#26) #16

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Compatibility Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
environment: MC Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --no-restore
- name: Test
working-directory: ./src
env:
MC_CLIENT_ID: ${{ secrets.MC_CLIENT_ID }}
MC_CLIENT_SECRET: ${{ secrets.MC_CLIENT_SECRET }}
MC_CLIENT_MID: ${{ secrets.MC_CLIENT_MID }}
MC_CLIENT_BASE_URI: ${{ secrets.MC_CLIENT_BASE_URI }}
run: dotnet test --no-build --verbosity normal --filter TestCategory="Compatibility"