libcryptsetup weekly #102
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: libcryptsetup weekly | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: 20 1 * * 1 | |
workflow_dispatch: | |
jobs: | |
next-fedora-python-checks: | |
strategy: | |
matrix: | |
include: | |
- dependencies: yamllint | |
task: yamllint | |
runs-on: ubuntu-latest | |
container: fedora:38 # NEXT DEVELOPMENT ENVIRONMENT | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: > | |
dnf install -y | |
make | |
${{ matrix.dependencies }} | |
- name: make -f Makefile ${{ matrix.task }} | |
run: make -f Makefile ${{ matrix.task }} |