remove brackets #10
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 macOS | |
on: | |
push: | |
branches: [master] | |
jobs: | |
test: | |
name: Build and test | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
bundler-cache: false | |
- name: setup minitest | |
run: gem install minitest | |
- name: Build | |
run: zsh build.sh build install | |
- name: Run tests | |
run: zsh build.sh test-workflow | |