Skip to content

Commit

Permalink
Merge branch 'main' into codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisoft authored Jul 27, 2024
2 parents e8b958c + bd2a25a commit ef28ac8
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 0 deletions.
81 changes: 81 additions & 0 deletions .github/workflows/doit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: do it

on:
push:
branches: [ "main" ]
schedule:
- cron: "33 18 * * *"

env:
PYTHON_VERSION: "3.10"

permissions:
contents: read

concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.actor || github.repository_owner }}
cancel-in-progress: ${{ (github.event_name == 'push' && github.base_ref == 'main' || github.event_name == 'schedule') && github.actor == github.repository_owner }}

jobs:
doit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION }}"

- name: Cache pip dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ env.PYTHON_VERSION }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
flake8 . --count --exit-zero --select=E,F --show-source --statistics
# Exit on syntax errors and undefined names
exit 0 # Treats all errors as warnings (consider a stricter exit code)
- name: Lint another time with flake8
run: |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run tests
if: false
run: |
pytest
- name: Login to Kaggle
if: ${{ github.actor == github.repository_owner }}
uses: osbm/[email protected]
with:
KAGGLE_USERNAME: ${{ secrets.KAGGLE_USERNAME || github.repository_owner }}
KAGGLE_KEY: ${{ secrets.KAGGLE_KEY }}

- name: Run app
if: ${{ github.actor == github.repository_owner }}
run: |
python main.py
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: kernels
path: kernels.zip
if-no-files-found: error
retention-days: 90

52 changes: 52 additions & 0 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: do it

on:
pull_request:

env:
PYTHON_VERSION: "graalpy-24"

permissions:
contents: read

concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.actor || github.repository_owner }}
cancel-in-progress: false

jobs:
lint-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION }}"

- name: Cache pip dependencies
if: ${{ github.actor == github.repository_owner }}
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ env.PYTHON_VERSION }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
flake8 . --count --max-complexity=10 --max-line-length=127 --statistics
- name: Run tests
if: true
run: |
pytest

0 comments on commit ef28ac8

Please sign in to comment.