Forcing to show current directory of #3
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: Run frontend tests | |
on: [pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
label: Linux | |
prefix: /usr/share/miniconda3/envs/lokomat_fes | |
- os: macos-latest | |
label: Macos | |
prefix: /Users/runner/miniconda3/envs/lokomat_fes | |
- os: windows-latest | |
label: Windows | |
prefix: C:\Miniconda3\envs\lokomat_fes | |
name: Tests on ${{ matrix.label }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run tests | |
uses: subosito/flutter-action@v1 | |
run: | | |
cd frontend | |
flutter test |