Skip to content

Solve 'Simple assembler interpreter' kata #27

Solve 'Simple assembler interpreter' kata

Solve 'Simple assembler interpreter' kata #27

Workflow file for this run

---
name: Build and run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.101
- name: Install dependencies
run: dotnet restore
- name: Build solution
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal