Skip to content

Commit

Permalink
Merge branch 'main' into develop-graphql-async
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Oct 6, 2022
2 parents 61d32f1 + f007904 commit 619026e
Show file tree
Hide file tree
Showing 83 changed files with 5,069 additions and 2,127 deletions.
45 changes: 45 additions & 0 deletions .github/actions/setup-python-matrix/action.yml
@@ -0,0 +1,45 @@
name: "setup-python-matrix"
description: "Sets up all versions of python required for matrix testing in this repo."
runs:
using: "composite"
steps:
- uses: actions/setup-python@v3
with:
python-version: "pypy-3.7"
architecture: x64

- uses: actions/setup-python@v3
with:
python-version: "pypy-2.7"
architecture: x64

- uses: actions/setup-python@v3
with:
python-version: "3.7"
architecture: x64

- uses: actions/setup-python@v3
with:
python-version: "3.8"
architecture: x64

- uses: actions/setup-python@v3
with:
python-version: "3.9"
architecture: x64

- uses: actions/setup-python@v3
with:
python-version: "3.10"
architecture: x64

- uses: actions/setup-python@v3
with:
python-version: "2.7"
architecture: x64

- name: Install Dependencies
shell: bash
run: |
python3.10 -m pip install -U pip
python3.10 -m pip install -U wheel setuptools tox virtualenv!=20.0.24
4 changes: 2 additions & 2 deletions .github/workflows/deploy-python.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
uses: pypa/cibuildwheel@v2.1.3
env:
CIBW_PLATFORM: linux
CIBW_BUILD: cp36-manylinux_aarch64 cp37-manylinux_aarch64 cp38-manylinux_aarch64 cp39-manylinux_aarch64 cp310-manylinux_aarch64 cp36-manylinux_x86_64 cp37-manylinux_x86_64 cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64
CIBW_BUILD: cp37-manylinux_aarch64 cp38-manylinux_aarch64 cp39-manylinux_aarch64 cp310-manylinux_aarch64 cp37-manylinux_x86_64 cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64
CIBW_ARCHS: x86_64 aarch64
CIBW_ENVIRONMENT: "LD_LIBRARY_PATH=/opt/rh/devtoolset-8/root/usr/lib64:/opt/rh/devtoolset-8/root/usr/lib:/opt/rh/devtoolset-8/root/usr/lib64/dyninst:/opt/rh/devtoolset-8/root/usr/lib/dyninst:/usr/local/lib64:/usr/local/lib"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/mega-linter.yml
@@ -1,6 +1,6 @@
---
# Mega-Linter GitHub Action configuration file
# More info at https://megalinter.github.io
# More info at https://oxsecurity.github.io/megalinter
name: Mega-Linter

on:
Expand All @@ -25,7 +25,7 @@ jobs:
steps:
# Git Checkout
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand All @@ -34,11 +34,11 @@ jobs:
- name: Mega-Linter
id: ml
# You can override Mega-Linter flavor used to have faster performances
# More info at https://megalinter.github.io/flavors/
uses: megalinter/megalinter/flavors/python@v5
# More info at https://oxsecurity.github.io/megalinter/flavors/
uses: oxsecurity/megalinter/flavors/python@v6
env:
# All available variables are described in documentation
# https://megalinter.github.io/configuration/
# https://oxsecurity.github.io/megalinter/configuration/
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} # Validates all source when push on main, else just the git diff with main. Set 'true' if you always want to lint all sources
DEFAULT_BRANCH: ${{ github.event_name == 'pull_request' && github.base_ref || 'main' }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -51,7 +51,7 @@ jobs:
with:
name: Mega-Linter reports
path: |
report
megalinter-reports
mega-linter.log
# Create pull request if applicable (for now works only on PR from same repository, not from forks)
Expand Down

0 comments on commit 619026e

Please sign in to comment.