Skip to content

Commit 619026e

Browse files
committed
Merge branch 'main' into develop-graphql-async
2 parents 61d32f1 + f007904 commit 619026e

File tree

83 files changed

+5069
-2127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+5069
-2127
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: "setup-python-matrix"
2+
description: "Sets up all versions of python required for matrix testing in this repo."
3+
runs:
4+
using: "composite"
5+
steps:
6+
- uses: actions/setup-python@v3
7+
with:
8+
python-version: "pypy-3.7"
9+
architecture: x64
10+
11+
- uses: actions/setup-python@v3
12+
with:
13+
python-version: "pypy-2.7"
14+
architecture: x64
15+
16+
- uses: actions/setup-python@v3
17+
with:
18+
python-version: "3.7"
19+
architecture: x64
20+
21+
- uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.8"
24+
architecture: x64
25+
26+
- uses: actions/setup-python@v3
27+
with:
28+
python-version: "3.9"
29+
architecture: x64
30+
31+
- uses: actions/setup-python@v3
32+
with:
33+
python-version: "3.10"
34+
architecture: x64
35+
36+
- uses: actions/setup-python@v3
37+
with:
38+
python-version: "2.7"
39+
architecture: x64
40+
41+
- name: Install Dependencies
42+
shell: bash
43+
run: |
44+
python3.10 -m pip install -U pip
45+
python3.10 -m pip install -U wheel setuptools tox virtualenv!=20.0.24

.github/workflows/deploy-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828
with:
2929
persist-credentials: false
3030
fetch-depth: 0
@@ -57,7 +57,7 @@ jobs:
5757
uses: pypa/cibuildwheel@v2.1.3
5858
env:
5959
CIBW_PLATFORM: linux
60-
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
60+
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
6161
CIBW_ARCHS: x86_64 aarch64
6262
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"
6363

.github/workflows/mega-linter.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# Mega-Linter GitHub Action configuration file
3-
# More info at https://megalinter.github.io
3+
# More info at https://oxsecurity.github.io/megalinter
44
name: Mega-Linter
55

66
on:
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
# Git Checkout
2727
- name: Checkout Code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
with:
3030
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
3131
fetch-depth: 0
@@ -34,11 +34,11 @@ jobs:
3434
- name: Mega-Linter
3535
id: ml
3636
# You can override Mega-Linter flavor used to have faster performances
37-
# More info at https://megalinter.github.io/flavors/
38-
uses: megalinter/megalinter/flavors/python@v5
37+
# More info at https://oxsecurity.github.io/megalinter/flavors/
38+
uses: oxsecurity/megalinter/flavors/python@v6
3939
env:
4040
# All available variables are described in documentation
41-
# https://megalinter.github.io/configuration/
41+
# https://oxsecurity.github.io/megalinter/configuration/
4242
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
4343
DEFAULT_BRANCH: ${{ github.event_name == 'pull_request' && github.base_ref || 'main' }}
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
name: Mega-Linter reports
5353
path: |
54-
report
54+
megalinter-reports
5555
mega-linter.log
5656
5757
# Create pull request if applicable (for now works only on PR from same repository, not from forks)

0 commit comments

Comments
 (0)