irctest/.github/workflows/sopel_devel.yml

35 lines
956 B
YAML

# This file was auto-generated by make_workflows.py.
# Do not edit it manually, modifications will be lost.
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Cache dependencies
uses: actions/cache@v2
with:
key: ${{ runner.os }}-sopel
path: |-
~/.cache
$GITHUB_WORKSPACE/placeholder
- name: Install dependencies
run: |-
sudo apt-get install atheme-services
python -m pip install --upgrade pip
pip install pytest -r requirements.txt
- name: Install dependencies
run: pip install git+https://github.com/sopel-irc/sopel.git
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make sopel
name: irctest with Sopel (devel)
'on':
schedule:
- cron: 51 8 * * 6
- cron: 51 8 * * 0
- cron: 51 17 * * *