summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2020-08-22 10:56:02 +0200
committerLars-Dominik Braun <lars@6xq.net>2020-08-22 10:56:02 +0200
commit91c1d273ca3dbb8429cea5f7502020b24936b010 (patch)
tree47351b480eed266ff47ba61ff3ddb08ececb6b26 /.github/workflows/ci.yaml
parent7f8b709e5be27adf50252c72c4b22899779aea99 (diff)
downloadlulua-91c1d273ca3dbb8429cea5f7502020b24936b010.tar.gz
lulua-91c1d273ca3dbb8429cea5f7502020b24936b010.tar.bz2
lulua-91c1d273ca3dbb8429cea5f7502020b24936b010.zip
Fix GitHub Actions file extension
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml44
1 files changed, 0 insertions, 44 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 9758584..0000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: CI
-on:
- push:
- branches: [ $default-branch ]
- pull_request:
- branches: [ $default-branch ]
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- python-version: [3.6, 3.7, 3.8, pypy3]
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python-version }}
- - name: Install dependencies
- run: |
- pip install .
- pip install flake8 pytest pytest-cov
- - name: Lint with flake8
- run: |
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- - name: Test with pytest
- run: |
- pytest lulua
- - name: Upload coverage
- uses: actions/upload-artifact@v2
- with:
- name: coverage
- path: htmlcov/
- - name: Build layouts
- # Due to the lack of corpora, we can’t run the entire thing here.
- run: |
- ./gen.sh > build.ninja
- ninja _build/report/ar-lulua.svg _build/report/ar-lulua.xmodmap
- - name: Upload results
- uses: actions/upload-artifact@v2
- with:
- name: report
- path: _build/report/
-