test-getuto.sh: Run getuto
with debug logging
#3
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
# GitHub actions workflow. | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
name: Build+Test CI | |
on: [pull_request, push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: gentoo/stage3 | |
steps: | |
- name: Install dependencies | |
run: | | |
emerge-webrsync | |
emerge --quiet --noreplace --oneshot \ | |
app-crypt/gnupg \ | |
dev-libs/openssl \ | |
sec-keys/openpgp-keys-gentoo-release \ | |
sys-devel/make | |
- uses: actions/checkout@v3 | |
name: Checkout | |
- name: Build | |
run: | | |
make check |