Skip to content

Update ruby and build env #2

Update ruby and build env

Update ruby and build env #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
services:
docker:
image: docker:19.03.12
options: >-
--privileged
--network host
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install -y docker.io docker-compose
- name: Build Docker image
run: docker-compose build
- name: Run Rake tasks
run: rake