From 64735adf86957298f8407e70050d50484541a366 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 24 Feb 2021 11:47:51 +0100 Subject: [PATCH] workflows: First attempt, with Oragono --- .github/workflows/oragono.yml | 45 +++++++++++++++++++++++++++++++++++ requirements.txt | 3 +++ 2 files changed, 48 insertions(+) create mode 100644 .github/workflows/oragono.yml create mode 100644 requirements.txt diff --git a/.github/workflows/oragono.yml b/.github/workflows/oragono.yml new file mode 100644 index 0000000..92d5993 --- /dev/null +++ b/.github/workflows/oragono.yml @@ -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' diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..158e685 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# The following dependencies are actually optional: +pyxmpp2-scram +ecdsa