MRITest #346
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: MRITest | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: '45 03 * * 6' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Crystal | |
uses: oprypin/install-crystal@v1 | |
with: | |
crystal: nightly | |
- name: Install Autoconf | |
run: sudo apt install -y autoconf | |
- name: Install Ruby | |
run: sudo apt install -y ruby | |
- name: Build shard | |
run: ANYOLITE_CONFIG_PATH="config_files/anyolite_config_mri.json" rake build_shard | |
- name: Test script | |
run: crystal run test.cr --error-trace -Danyolite_implementation_ruby_3 |