Enable LUKS2 and PBKDF2 by default for compat with grub (boo#1185291) #215
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
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
# downloading the Docker image takes some time so bundling several fast | |
# checks into one job avoids that overhead | |
Checks: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
distro: [ "tumbleweed" ] | |
container: | |
image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: POT Check | |
run: rake check:pot | |
- name: Validate XML | |
run: make -C control check | |
- name: Package Build | |
run: yast-ci-ruby |