fix typo #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Tests | |
on: [push] | |
jobs: | |
dotnet-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and Run dotnet tests | |
run: docker compose up --build tests | |
ui-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
tests: [bones-ui-tests] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and Run tests ui | |
run: docker compose run --build tests-ui ${{ matrix.tests }} |