Skip to content

Fix changed method name. #24

Fix changed method name.

Fix changed method name. #24

Workflow file for this run

name: Build
on:
pull_request: {}
push:
branches:
- '**' # matches every branch
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/[email protected]
- name: setup .net core
uses: actions/[email protected]
with:
dotnet-version: 6.0.100
- name: build
run: dotnet build
working-directory: .
- name: test
run: |
dotnet test
if [ $? -eq 0 ]; then
echo TESTS PASSED
else
echo TESTS FAILED
exit 1
fi
working-directory: ./ProtocApi.Tests