Skip to content

Commit

Permalink
Merge pull request #44 from yast/github_actions
Browse files Browse the repository at this point in the history
GitHub actions
  • Loading branch information
jreidinger committed Jan 13, 2021
2 parents cb4a4c6 + 78dea1c commit 26034d1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions

name: CI

on: [push, pull_request]

jobs:
Package:
runs-on: ubuntu-latest
container: registry.opensuse.org/yast/head/containers/yast-ruby:latest

steps:

- name: Git Checkout
uses: actions/checkout@v2

- name: Package Build
run: yast-ci-ruby -o package

# downloading the Docker image takes some time so bundling several fast
# checks into one job avoids that overhead
Checks:
runs-on: ubuntu-latest
container: registry.opensuse.org/yast/head/containers/yast-ruby:latest

steps:

- name: Git Checkout
uses: actions/checkout@v2

- name: POT Check
run: rake check:pot
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
YaST Support module
=================

[![Workflow Status](https://github.com/yast/yast-support/workflows/CI/badge.svg?branch=master)](
https://github.com/yast/yast-support/actions?query=branch%3Amaster)

The YaST module that helps with getting support for SLE products.

0 comments on commit 26034d1

Please sign in to comment.