Skip to content

Bump click from 8.1.4 to 8.1.5 (#583) #843

Bump click from 8.1.4 to 8.1.5 (#583)

Bump click from 8.1.4 to 8.1.5 (#583) #843

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
PYTHON_VERSION: "3.10"
jobs:
tox:
name: Tox
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/[email protected]
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install tox
run: python3 -m pip install tox
- name: Run tox
run: tox
hadolint:
name: Hadolint
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
- name: Lint Dockerfile
uses: hadolint/[email protected]
with:
dockerfile: "Dockerfile"
failure-threshold: warning
test:
name: Test wheels ${{ matrix.arch }}-${{ matrix.abi }}-${{ matrix.tag }}
runs-on: ubuntu-latest
strategy:
matrix:
abi: ["cp310", "cp311"]
tag: ["musllinux_1_2"]
arch: ["aarch64", "armhf", "armv7", "amd64", "i386"]
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
- name: Write env-file
shell: bash
run: |
(
echo "GRPC_BUILD_WITH_BORING_SSL_ASM=false"
echo "GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=true"
echo "GRPC_PYTHON_BUILD_WITH_CYTHON=true"
echo "CARGO_NET_GIT_FETCH_WITH_CLI=true"
) > .env_file
- name: Build wheels
uses: ./
with:
abi: ${{ matrix.abi }}
tag: ${{ matrix.tag }}
arch: ${{ matrix.arch }}
apk: "libffi-dev;openssl-dev"
skip-binary: "orjson"
env-file: True
test: True
requirements: "requirements_wheels_test.txt"