2020-11-25 09:26:42 +01:00
|
|
|
---
|
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
2020-12-04 09:07:09 +01:00
|
|
|
workflow_dispatch:
|
2020-11-25 09:26:42 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '35 4 * * 4' # weekly on thursday morning
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
ruby-version:
|
|
|
|
- '2.5'
|
|
|
|
- '2.6'
|
|
|
|
- '2.7'
|
2020-12-25 16:42:53 +01:00
|
|
|
- '3.0'
|
2020-11-25 09:26:42 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
2020-12-04 08:48:25 +01:00
|
|
|
uses: ruby/setup-ruby@v1
|
2020-11-25 09:26:42 +01:00
|
|
|
with:
|
|
|
|
ruby-version: ${{ matrix.ruby-version }}
|
2020-12-26 15:19:20 +01:00
|
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
2021-04-16 18:11:23 +02:00
|
|
|
|
2020-12-26 15:19:20 +01:00
|
|
|
- name: Lint and Test
|
2020-11-25 09:26:42 +01:00
|
|
|
run: |
|
|
|
|
bundle exec rake ci
|
2021-04-02 10:54:35 +02:00
|
|
|
|
|
|
|
# https://github.com/marketplace/actions/build-and-push-docker-images
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
- name: Test building Docker image for dyndnsd
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2021-04-16 18:11:23 +02:00
|
|
|
context: .
|
|
|
|
file: docker/ci/Dockerfile
|