fix files #5
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: Test Windows | |
on: | |
push: | |
branches: [master] | |
jobs: | |
test: | |
name: Build and test | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
bundler-cache: false | |
- name: Install llvm make | |
uses: crazy-max/ghaction-chocolatey@v3 | |
with: | |
args: install llvm make | |
- name: setup minitest | |
run: gem install minitest | |
- name: Build | |
run: powershell.exe -command ".\build.ps1 build install" | |
- name: Test | |
run: .\build.ps1 test | |
shell: powershell | |