mirror of
https://github.com/progval/irctest.git
synced 2025-04-08 00:09:46 +00:00
workflows: Add Limnoria
This commit is contained in:
37
.github/workflows/limnoria.yml
vendored
Normal file
37
.github/workflows/limnoria.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: irctest with Limnoria
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
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:
|
||||||
|
path: |
|
||||||
|
~/.cache
|
||||||
|
key: ${{ runner.os }}-limnoria
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest limnoria==2021.01.15 cryptography -r requirements.txt
|
||||||
|
|
||||||
|
- name: Test with pytest
|
||||||
|
run: |
|
||||||
|
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.limnoria
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user