mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
38 lines
663 B
YAML
38 lines
663 B
YAML
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 make limnoria
|
|
|
|
|