Skip to content

Bump boto3 from 1.26.83 to 1.35.11 #503

Bump boto3 from 1.26.83 to 1.35.11

Bump boto3 from 1.26.83 to 1.35.11 #503

Workflow file for this run

name: Build Test
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
workflow_dispatch:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: build
run: python3 setup.py install
Test:
needs: [Build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: test
run: |
pip3 install tox
tox -r