Add borgmatic_timer_hour and borgmatic_timer_minute to argument_specs.yml #254
Workflow file for this run
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Molecule | |
run: | | |
pip install -U pip setuptools wheel | |
pip install -r requirements-dev.txt | |
# - name: Debugging with tmate | |
# uses: mxschmitt/[email protected] | |
- name: Test using Molecule | |
run: molecule test |