Skip to content

Commit

Permalink
just use old ci but with newer python
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgehret committed Aug 23, 2024
1 parent 8bbc98e commit 18ffcc1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/ci-dev.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci

on:
pull_request:
push:
branches:
- master

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v2

- name: set up python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9

- name: install dependencies
run: python -m pip install --upgrade pip

- name: lint and test
run: |
pip install -q flake8
flake8
python setup.py install
q2lint

0 comments on commit 18ffcc1

Please sign in to comment.