Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
themoosman committed Jun 20, 2024
1 parent 7b5b5e7 commit 8b1283f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/flake8.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/linuxci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Linux CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Python environment report
run: python -c "import sys; print(sys.version)"
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
ignore: "F401"
max-line-length: "120"

0 comments on commit 8b1283f

Please sign in to comment.