Skip to content

Commit

Permalink
fix: gha and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Matias Kotlik committed Apr 19, 2024
1 parent a3a6386 commit 071950a
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 88 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,14 @@ jobs:

runs-on: ubuntu-latest

environment:
name: Production

steps:

- uses: actions/checkout@v3

- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: 3.11
cache: pip

- name: To PyPI using Flit
Expand Down
20 changes: 3 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,21 @@
name: release

on:
workflow_run:
workflows: [ "tests" ]
branches: [ "main" ]
types:
- completed

workflow_dispatch:

jobs:

github-release:
runs-on: ubuntu-latest

# Workflow will run only if the trigger workflow completed with success.
if: ${{ github.event.workflow_run.conclusion == 'success' }}

environment:
name: Staging

steps:
- uses: actions/checkout@v2

- name: conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v3.7.1
with:
github-token: ${{ secrets.CHANGELOG_RELEASE }}
git-user-name: Google GitHub Actions Bot
git-user-email: 72759630+google-github-actions-bot@users.noreply.github.com
git-message: 'release: {version}'
github-token: ${{ secrets.GITHUB_TOKEN }}
version-file: ./pyproject.toml
version-path: project.version
release-count: 0
Expand All @@ -39,8 +24,9 @@ jobs:
uses: actions/create-release@v1
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.CHANGELOG_RELEASE }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
draft: true
9 changes: 2 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,16 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Workflow will run only if the trigger workflow completed with success.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
environment:
name: Development

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: 3.11
cache: pip

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
110 changes: 60 additions & 50 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,116 +1,126 @@
# [1.11.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.10.1...v1.11.0) (2023-08-20)
## [1.11.1](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.11.0...v1.11.1) (2024-04-19)


### Bug Fixes

* gha ([9f099a9](https://github.com/matiaskotlik/async-firebase-rest-api/commit/9f099a91932caf9010815c895356c96e5d712c4b))
* update readme ([f7c7cc1](https://github.com/matiaskotlik/async-firebase-rest-api/commit/f7c7cc1c75d60117c05c63574bfccd9f97ced606))



# [1.11.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.10.1...v1.11.0) (2023-08-20)


### Features

* add email and password change functionality ([2fb370f](https://github.com/AsifArmanRahman/firebase-rest-api/commit/2fb370f3e1d134c6aa0c10428c76fc4bd9d26128)), closes [#20](https://github.com/AsifArmanRahman/firebase-rest-api/issues/20)
* add email and password change functionality ([2fb370f](https://github.com/matiaskotlik/async-firebase-rest-api/commit/2fb370f3e1d134c6aa0c10428c76fc4bd9d26128)), closes [#20](https://github.com/matiaskotlik/async-firebase-rest-api/issues/20)



## [1.10.1](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.10.0...v1.10.1) (2023-04-07)
## [1.10.1](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.10.0...v1.10.1) (2023-04-07)


### Bug Fixes

* unsupported error for empty string and dict ([bb84d9e](https://github.com/AsifArmanRahman/firebase-rest-api/commit/bb84d9e854fd8ca69b080666f1f76ae05e9b80a0)), closes [#11](https://github.com/AsifArmanRahman/firebase-rest-api/issues/11)
* unsupported error for empty string and dict ([bb84d9e](https://github.com/matiaskotlik/async-firebase-rest-api/commit/bb84d9e854fd8ca69b080666f1f76ae05e9b80a0)), closes [#11](https://github.com/matiaskotlik/async-firebase-rest-api/issues/11)



# [1.10.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.9.0...v1.10.0) (2023-03-24)
# [1.10.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.9.0...v1.10.0) (2023-03-24)


### Features

* **auth:** verify id token ([d896ab3](https://github.com/AsifArmanRahman/firebase-rest-api/commit/d896ab33a7347e5c99ee29b43395aec06e7dcab0)), closes [#9](https://github.com/AsifArmanRahman/firebase-rest-api/issues/9)
* **auth:** verify id token ([d896ab3](https://github.com/matiaskotlik/async-firebase-rest-api/commit/d896ab33a7347e5c99ee29b43395aec06e7dcab0)), closes [#9](https://github.com/matiaskotlik/async-firebase-rest-api/issues/9)



# [1.9.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.8.1...v1.9.0) (2023-03-24)
# [1.9.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.8.1...v1.9.0) (2023-03-24)


### Features

* set custom user claims ([9a5c9b9](https://github.com/AsifArmanRahman/firebase-rest-api/commit/9a5c9b958a3663178a49c5ed33cd0e4bbef4444c)), closes [#8](https://github.com/AsifArmanRahman/firebase-rest-api/issues/8)
* set custom user claims ([9a5c9b9](https://github.com/matiaskotlik/async-firebase-rest-api/commit/9a5c9b958a3663178a49c5ed33cd0e4bbef4444c)), closes [#8](https://github.com/matiaskotlik/async-firebase-rest-api/issues/8)



## [1.8.1](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.8.0...v1.8.1) (2023-02-08)
## [1.8.1](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.8.0...v1.8.1) (2023-02-08)


### Bug Fixes

* unsupported type error thrown for empty array field ([63cce77](https://github.com/AsifArmanRahman/firebase-rest-api/commit/63cce77420a999f0e151a32c8e389593b84dc357)), closes [#7](https://github.com/AsifArmanRahman/firebase-rest-api/issues/7)
* unsupported type error thrown for empty array field ([63cce77](https://github.com/matiaskotlik/async-firebase-rest-api/commit/63cce77420a999f0e151a32c8e389593b84dc357)), closes [#7](https://github.com/matiaskotlik/async-firebase-rest-api/issues/7)



# [1.8.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.7.0...v1.8.0) (2022-08-15)
# [1.8.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.7.0...v1.8.0) (2022-08-15)


### Features

* **auth:** sign in with facebook ([0bcead3](https://github.com/AsifArmanRahman/firebase-rest-api/commit/0bcead336128195932120c371be70f0afd5595ae))
* **firestore:** add list_of_documents() method ([04c8e20](https://github.com/AsifArmanRahman/firebase-rest-api/commit/04c8e20b98693e4e285266a571f7fcd9b7c10c4e))
* **auth:** sign in with facebook ([0bcead3](https://github.com/matiaskotlik/async-firebase-rest-api/commit/0bcead336128195932120c371be70f0afd5595ae))
* **firestore:** add list_of_documents() method ([04c8e20](https://github.com/matiaskotlik/async-firebase-rest-api/commit/04c8e20b98693e4e285266a571f7fcd9b7c10c4e))



# [1.7.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.6.0...v1.7.0) (2022-08-14)
# [1.7.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.6.0...v1.7.0) (2022-08-14)


### Features

* **firestore:** support for complex queries ([6951e69](https://github.com/AsifArmanRahman/firebase-rest-api/commit/6951e6917ea31271da370e43cb5d8f0caa6d7d1f))
* **firestore:** support for complex queries ([6951e69](https://github.com/matiaskotlik/async-firebase-rest-api/commit/6951e6917ea31271da370e43cb5d8f0caa6d7d1f))



# [1.6.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.5.0...v1.6.0) (2022-08-13)
# [1.6.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.5.0...v1.6.0) (2022-08-13)


### Features

* **firestore:** add add() method ([ec710ab](https://github.com/AsifArmanRahman/firebase-rest-api/commit/ec710ab5cb050f3799eb66430998bfb001f2e343))
* **firestore:** add add() method ([ec710ab](https://github.com/matiaskotlik/async-firebase-rest-api/commit/ec710ab5cb050f3799eb66430998bfb001f2e343))



# [1.5.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.4.0...v1.5.0) (2022-08-11)
# [1.5.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.4.0...v1.5.0) (2022-08-11)


### Features

* **firestore:** add get method for collection ([7d9a193](https://github.com/AsifArmanRahman/firebase-rest-api/commit/7d9a19379914235be423bf36e208031fac28f48b))
* **firestore:** add get method for collection ([7d9a193](https://github.com/matiaskotlik/async-firebase-rest-api/commit/7d9a19379914235be423bf36e208031fac28f48b))



# [1.4.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.0.1...v1.4.0) (2022-08-08)
# [1.4.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.0.1...v1.4.0) (2022-08-08)


### Features

* **firestore:** add delete() method ([ba00cc2](https://github.com/AsifArmanRahman/firebase-rest-api/commit/ba00cc2ab9f1c29cc5e1306d39b5efe6b28af20f))
* **firestore:** add get() method ([dba57ea](https://github.com/AsifArmanRahman/firebase-rest-api/commit/dba57eab5dd1de1c5af22184cc6dead29fcb6d84))
* **firestore:** add set() method ([c8198f2](https://github.com/AsifArmanRahman/firebase-rest-api/commit/c8198f2fc6bc4605a3a50bf23c7ac823acc59cd2))
* **firestore:** add update() method ([e85c459](https://github.com/AsifArmanRahman/firebase-rest-api/commit/e85c459030441c413728e03a0646997e0fdc1a71))
* **firestore:** add delete() method ([ba00cc2](https://github.com/matiaskotlik/async-firebase-rest-api/commit/ba00cc2ab9f1c29cc5e1306d39b5efe6b28af20f))
* **firestore:** add get() method ([dba57ea](https://github.com/matiaskotlik/async-firebase-rest-api/commit/dba57eab5dd1de1c5af22184cc6dead29fcb6d84))
* **firestore:** add set() method ([c8198f2](https://github.com/matiaskotlik/async-firebase-rest-api/commit/c8198f2fc6bc4605a3a50bf23c7ac823acc59cd2))
* **firestore:** add update() method ([e85c459](https://github.com/matiaskotlik/async-firebase-rest-api/commit/e85c459030441c413728e03a0646997e0fdc1a71))


### Reverts

* Revert "release: v1.0.2" ([4ce29e9](https://github.com/AsifArmanRahman/firebase-rest-api/commit/4ce29e92e3de0bdb1170ffa7ab2afdaf2bf16141))
* Revert "release: v1.1.0" ([55d3619](https://github.com/AsifArmanRahman/firebase-rest-api/commit/55d361920613bba9f2723784c39d6b3ce63c1ad1))
* Revert "release: v1.0.2" ([4ce29e9](https://github.com/matiaskotlik/async-firebase-rest-api/commit/4ce29e92e3de0bdb1170ffa7ab2afdaf2bf16141))
* Revert "release: v1.1.0" ([55d3619](https://github.com/matiaskotlik/async-firebase-rest-api/commit/55d361920613bba9f2723784c39d6b3ce63c1ad1))



## [1.0.1](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v1.0.0...v1.0.1) (2022-07-30)
## [1.0.1](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v1.0.0...v1.0.1) (2022-07-30)


### Bug Fixes

* **auth:** create_custom_token ([240ef7c](https://github.com/AsifArmanRahman/firebase-rest-api/commit/240ef7cd61119c52ea4c78271fa5e9201c1da618))
* **auth:** create_custom_token ([240ef7c](https://github.com/matiaskotlik/async-firebase-rest-api/commit/240ef7cd61119c52ea4c78271fa5e9201c1da618))



# [1.0.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.7.0...v1.0.0) (2022-07-28)
# [1.0.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.7.0...v1.0.0) (2022-07-28)


* chore!: update dependencies ([2551fdd](https://github.com/AsifArmanRahman/firebase-rest-api/commit/2551fdd64ef1d1411d689f9d61e01588d6620312))
* chore!: update dependencies ([2551fdd](https://github.com/matiaskotlik/async-firebase-rest-api/commit/2551fdd64ef1d1411d689f9d61e01588d6620312))


### BREAKING CHANGES
Expand All @@ -119,87 +129,87 @@



# [0.7.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.6.0...v0.7.0) (2022-07-24)
# [0.7.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.6.0...v0.7.0) (2022-07-24)


### Features

* **auth:** add _𝘵𝘰𝘬𝘦𝘯_𝘧𝘳𝘰𝘮_𝘢𝘶𝘵𝘩_𝘶𝘳𝘭 method ([e444135](https://github.com/AsifArmanRahman/firebase-rest-api/commit/e444135a9d1107383405717029ccd0aab82f1f70))
* **auth:** Sign In with Google ([be6cb05](https://github.com/AsifArmanRahman/firebase-rest-api/commit/be6cb0551fc271cb3ae818de6f06137bbf44139d))
* **auth:** add _𝘵𝘰𝘬𝘦𝘯_𝘧𝘳𝘰𝘮_𝘢𝘶𝘵𝘩_𝘶𝘳𝘭 method ([e444135](https://github.com/matiaskotlik/async-firebase-rest-api/commit/e444135a9d1107383405717029ccd0aab82f1f70))
* **auth:** Sign In with Google ([be6cb05](https://github.com/matiaskotlik/async-firebase-rest-api/commit/be6cb0551fc271cb3ae818de6f06137bbf44139d))



# [0.6.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.5.0...v0.6.0) (2022-07-24)
# [0.6.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.5.0...v0.6.0) (2022-07-24)


### Features

* **auth:** add 𝘴𝘪𝘨𝘯_𝘪𝘯_𝘸𝘪𝘵𝘩_𝘰𝘢𝘶𝘵𝘩_𝘤𝘳𝘦𝘥𝘦𝘯𝘵𝘪𝘢𝘭 ([ad211a5](https://github.com/AsifArmanRahman/firebase-rest-api/commit/ad211a5bc3c9deddbe8441ff524d0008e0eb19a7))
* **auth:** client secret from file ([e5ea84e](https://github.com/AsifArmanRahman/firebase-rest-api/commit/e5ea84ed1a54246fe5a0709b7eafaaf7dd0aeb2c))
* **auth:** add 𝘴𝘪𝘨𝘯_𝘪𝘯_𝘸𝘪𝘵𝘩_𝘰𝘢𝘶𝘵𝘩_𝘤𝘳𝘦𝘥𝘦𝘯𝘵𝘪𝘢𝘭 ([ad211a5](https://github.com/matiaskotlik/async-firebase-rest-api/commit/ad211a5bc3c9deddbe8441ff524d0008e0eb19a7))
* **auth:** client secret from file ([e5ea84e](https://github.com/matiaskotlik/async-firebase-rest-api/commit/e5ea84ed1a54246fe5a0709b7eafaaf7dd0aeb2c))



# [0.5.0](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.4.9...v0.5.0) (2022-07-23)
# [0.5.0](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.4.9...v0.5.0) (2022-07-23)


### Features

* **auth:** add 𝘤𝘳𝘦𝘢𝘵𝘦_𝘢𝘶𝘵𝘩𝘦𝘯𝘵𝘪𝘤𝘢𝘵𝘪𝘰𝘯_𝘶𝘳𝘪 method ([b45a7f2](https://github.com/AsifArmanRahman/firebase-rest-api/commit/b45a7f203b0e4369bd501831ffca9f26c3eac464))
* **auth:** add 𝘤𝘳𝘦𝘢𝘵𝘦_𝘢𝘶𝘵𝘩𝘦𝘯𝘵𝘪𝘤𝘢𝘵𝘪𝘰𝘯_𝘶𝘳𝘪 method ([b45a7f2](https://github.com/matiaskotlik/async-firebase-rest-api/commit/b45a7f203b0e4369bd501831ffca9f26c3eac464))



## [0.4.9](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.4.8...v0.4.9) (2022-07-22)
## [0.4.9](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.4.8...v0.4.9) (2022-07-22)


### Bug Fixes

* **storage:** proper link generate with 𝘨𝘦𝘵_𝘶𝘳𝘭 ([c825c16](https://github.com/AsifArmanRahman/firebase-rest-api/commit/c825c1695f4a0e87d4daa467c2ca654a9cc05248))
* **storage:** proper link generate with 𝘨𝘦𝘵_𝘶𝘳𝘭 ([c825c16](https://github.com/matiaskotlik/async-firebase-rest-api/commit/c825c1695f4a0e87d4daa467c2ca654a9cc05248))


### Performance Improvements

* **storage:** use 𝘳𝘦𝘲𝘶𝘦𝘴𝘵 param ([f51d0dc](https://github.com/AsifArmanRahman/firebase-rest-api/commit/f51d0dc52e030bfe867d70c7728c3ccc32dc4334))
* **storage:** use 𝘳𝘦𝘲𝘶𝘦𝘴𝘵 param ([f51d0dc](https://github.com/matiaskotlik/async-firebase-rest-api/commit/f51d0dc52e030bfe867d70c7728c3ccc32dc4334))



## [0.4.8](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.4.7...v0.4.8) (2022-07-21)
## [0.4.8](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.4.7...v0.4.8) (2022-07-21)


### Bug Fixes

* **storage:** set path via 𝘤𝘩𝘪𝘭𝘥 for 𝘥𝘦𝘭𝘦𝘵𝘦 ([b0527f0](https://github.com/AsifArmanRahman/firebase-rest-api/commit/b0527f0d418ad203df5845e1fd123bafe88a4b5d))
* **storage:** set path via 𝘤𝘩𝘪𝘭𝘥 for 𝘥𝘦𝘭𝘦𝘵𝘦 ([b0527f0](https://github.com/matiaskotlik/async-firebase-rest-api/commit/b0527f0d418ad203df5845e1fd123bafe88a4b5d))



## [0.4.7](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.4.6...v0.4.7) (2022-07-21)
## [0.4.7](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.4.6...v0.4.7) (2022-07-21)


### Bug Fixes

* **storage:** set path via 𝘤𝘩𝘪𝘭𝘥 for 𝘥𝘰𝘸𝘯𝘭𝘰𝘢𝘥 ([da4d1de](https://github.com/AsifArmanRahman/firebase-rest-api/commit/da4d1deb9cfcc3c962f0240b70f9fee284dcd3e6))
* **storage:** set path via 𝘤𝘩𝘪𝘭𝘥 for 𝘥𝘰𝘸𝘯𝘭𝘰𝘢𝘥 ([da4d1de](https://github.com/matiaskotlik/async-firebase-rest-api/commit/da4d1deb9cfcc3c962f0240b70f9fee284dcd3e6))



## [0.4.6](https://github.com/AsifArmanRahman/firebase-rest-api/compare/v0.4.5...v0.4.6) (2022-07-20)
## [0.4.6](https://github.com/matiaskotlik/async-firebase-rest-api/compare/v0.4.5...v0.4.6) (2022-07-20)


### Bug Fixes

* custom token generator ( [#1](https://github.com/AsifArmanRahman/firebase-rest-api/issues/1) ) ([b4cb169](https://github.com/AsifArmanRahman/firebase-rest-api/commit/b4cb1699d2d48d9741311d04a8530bf0242811e2))
* custom token generator ( [#1](https://github.com/matiaskotlik/async-firebase-rest-api/issues/1) ) ([b4cb169](https://github.com/matiaskotlik/async-firebase-rest-api/commit/b4cb1699d2d48d9741311d04a8530bf0242811e2))



## [0.4.5](https://github.com/AsifArmanRahman/firebase-rest-api/compare/d0837260dcbc5ed4b890f38ac36b5dfa10d05e48...v0.4.5) (2022-07-19)
## [0.4.5](https://github.com/matiaskotlik/async-firebase-rest-api/compare/d0837260dcbc5ed4b890f38ac36b5dfa10d05e48...v0.4.5) (2022-07-19)


### Bug Fixes

* **Build:** update requests version ([d083726](https://github.com/AsifArmanRahman/firebase-rest-api/commit/d0837260dcbc5ed4b890f38ac36b5dfa10d05e48))
* **Build:** update requests version ([d083726](https://github.com/matiaskotlik/async-firebase-rest-api/commit/d0837260dcbc5ed4b890f38ac36b5dfa10d05e48))


### Performance Improvements

* use 𝘳𝘦𝘲𝘶𝘦𝘴𝘵 param ([db224f1](https://github.com/AsifArmanRahman/firebase-rest-api/commit/db224f1b75d57f77a8b118e6ed52ac22313e4fbf))
* use 𝘳𝘦𝘲𝘶𝘦𝘴𝘵 param ([db224f1](https://github.com/matiaskotlik/async-firebase-rest-api/commit/db224f1b75d57f77a8b118e6ed52ac22313e4fbf))



3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@

<div align="center">

<a href="https://github.com/matiaskotlik/async-firebase-rest-api/actions/workflows/build.yml">
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/matiaskotlik/async-firebase-rest-api/build.yml?logo=GitHub">
</a>
<a href="https://github.com/matiaskotlik/async-firebase-rest-api/actions/workflows/tests.yml">
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/matiaskotlik/async-firebase-rest-api/tests.yml?label=tests&logo=Pytest">
</a>
Expand Down
Loading

0 comments on commit 071950a

Please sign in to comment.