Move check hidden file to other function #33
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: Debian SID | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: debian:sid | |
steps: | |
- name: Install packages | |
run: | | |
apt update | |
apt install -y git gcc make nim libclamav-dev libyara-dev liblzma-dev libzstd-dev | |
- name: Get RkCheck | |
run: git clone https://github.com/dmknght/rkcheck | |
- name: build | |
run: make build | |
working-directory: rkcheck |