Bump idna from 3.6 to 3.7 #193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull-request | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
DOCKER_HOSTNAME: ghcr.io | |
DOCKER_NAMESPACE: fybrik | |
DOCKER_USERNAME: ${{ github.actor }} | |
AWS_PAGER: "" | |
AWS_EC2_METADATA_DISABLED: true | |
GO_VERSION: 1.19 | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
kubectlVersion: 'kind25' | |
fybrikVersion: 'master' | |
moduleVersion: 'master' | |
certManagerVersion: '1.6.2' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
pip install pipenv | |
- name: Install tools | |
run: make install-tools | |
- name: Install AWS cli | |
uses: unfor19/install-aws-cli-action@v1 | |
with: | |
version: 2 # default | |
verbose: false # default | |
- name: run-test | |
run: pushd hack && ./test_module.sh $kubectlVersion $fybrikVersion $moduleVersion $certManagerVersion | |
- name: Build docker image | |
run: make build |