Update from ruby 3.1.2 to 3.3.5 #19
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: Integration tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-server: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby 3.1 | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.x | |
- name: Prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install git libfontconfig1-dev libsndfile1-dev libsdl2-dev libmpg123-dev libopenal1 libopenal-dev | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
mkdir -p ~/.chichilku/chichilku3 | |
cd ~/.chichilku/chichilku3 || exit 1 | |
git clone https://github.com/chichilku/chichilku3-maps.git maps | |
- name: Run server | |
run: | | |
./tools/test.sh |