irctest/.github/workflows/sopel.yml

33 lines
876 B
YAML
Raw Normal View History

# This file was auto-generated by make_workflows.py.
# Do not edit it manually, modifications will be lost.
2021-02-24 12:42:24 +00:00
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
2021-02-24 12:42:24 +00:00
- name: Install dependencies
run: |-
sudo apt-get install atheme-services
2021-02-24 12:42:24 +00:00
python -m pip install --upgrade pip
pip install pytest -r requirements.txt
- name: Install dependencies
run: pip install sopel==7.0.7
2021-02-24 12:42:24 +00:00
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make sopel
name: irctest with Sopel
'on':
pull_request: null
push: null