mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
workflows: First attempt, with Oragono
This commit is contained in:
45
.github/workflows/oragono.yml
vendored
Normal file
45
.github/workflows/oragono.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
name: irctest with Oragono
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: [3.7]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
python -m pip install pre-commit pytest
|
||||||
|
pip install -r requirements.txt
|
||||||
|
- name: Lint
|
||||||
|
run: |
|
||||||
|
pre-commit run -a
|
||||||
|
|
||||||
|
- name: Checkout Oragono
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: oragono/oragono
|
||||||
|
ref: v2.5.1
|
||||||
|
path: oragono
|
||||||
|
|
||||||
|
- name: Build Oragono
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/oragono/
|
||||||
|
make build
|
||||||
|
make install
|
||||||
|
|
||||||
|
- name: Test with pytest
|
||||||
|
run: |
|
||||||
|
PATH=~/go/bin:$PATH pytest --controller=irctest.controllers.oragono -k 'not deprecated'
|
3
requirements.txt
Normal file
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# The following dependencies are actually optional:
|
||||||
|
pyxmpp2-scram
|
||||||
|
ecdsa
|
Reference in New Issue
Block a user