POC: Continues Integration for dropbox_uploaded #558
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi @andreafabrizi !
I came across your dropbox_uploader after all other options (dropbox's limus client and dbxcli) didn't work for me.
The main problem was that I needed to upload folders in my GitHub Action workflows and the other options didn't let me manage the secrets easily.
I'm using dropbox_uploader in our automated tests and since I've all this working now, I thought you may like to use some of it for your own automated testing of dropbox_uploader.
===
PR adds
ci.yml
github actions workflow (see https://docs.github.com/en/actions)The tests run on every git push to the master branch and on every PR into the

master
branch:The workflow assumes that the repository has access to these GitHub secrets: DROPBOX_OAUTH_APP_KEY, DROPBOX_OAUTH_APP_SECRET, DROPBOX_OAUTH_REFRESH_TOKEN
I have made them temporally available my Dropbox_Uploader fork, but revoked access after my PR passed (so you cannot rerun the workflow anymore, it will fail)
Successful workflow run: https://github.com/livelyhood/Dropbox-Uploader/actions/runs/1527759907?check_suite_focus=true
Comments by the CI on the PR:
livelyhood#1
Failed workflow run: https://github.com/livelyhood/Dropbox-Uploader/runs/4387211689?check_suite_focus=true
Thanks for your tool!
Best
Sebastian (penchef)