Add S3.find_keys and S3.find_key functions #19
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: Test | |
on: push | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
test: | |
name: ✅ Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🐙 Checkout Repo | |
uses: actions/checkout@v4 | |
- name: 🐍 Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: 📥 Install Package | |
shell: bash | |
run: | | |
set -x | |
pip install ".[test]" | |
- name: 📝 Run Tests | |
shell: bash | |
run: | | |
# Print info about the environment | |
mads environ | |
pytest |