Skip to content

Add x-meta-filename to the s3 upload request #99

Add x-meta-filename to the s3 upload request

Add x-meta-filename to the s3 upload request #99

Workflow file for this run

name: main
on:
- pull_request
- push
jobs:
build:
strategy:
fail-fast: false
matrix:
python_version:
- '3.9'
os:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: |
pip3 install poetry
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run checks
run: poetry run make check