dowgrade tools to versions used in meta #5
This file contains hidden or 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: SAFE meta automated tests | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Tool Restore | |
run: dotnet tool restore | |
- name: Dotnet Restore | |
run: dotnet restore | |
- name: Test | |
working-directory: ./Build | |
run: dotnet run --project Build.fsproj -- Test |