Auto-layout selector based on device; keybinding works #8
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: Automated Testing | |
on: | |
push: | |
branches: | |
- "*" | |
workflow_call: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest, ubuntu-latest, macOS-latest ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@master | |
- name: Setup Dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' # SDK Version to use | |
- name: .Net Core Info | |
run: dotnet --info | |
- name: Run Unit Tests | |
run: dotnet test |