Skip to content

Commit

Permalink
Deploy bda2599 to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Deploy from CI committed Apr 14, 2023
0 parents commit dd80273
Show file tree
Hide file tree
Showing 66 changed files with 11,872 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Feature request
description: Request a new feature
labels: "enhancement"
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to let us know what gget is missing!
- type: dropdown
id: request-type
attributes:
label: Request type
description: Are you requesting the extension of an existing module or a new module?
options:
- Extension of existing module
- New module
validations:
required: true
- type: textarea
id: description
attributes:
label: Request description
description: Please describe your request.
placeholder: Include links to references/databases if applicable.
validations:
required: true
- type: textarea
id: command
attributes:
label: Example command
description: Please provide an example command as you envision it.
render: shell
- type: textarea
id: command-output
attributes:
label: Example return value
description: Please describe what the above-mentioned command should return.
placeholder: What is the most important information? Which format would be most useful?
73 changes: 73 additions & 0 deletions .github/ISSUE_TEMPLATE/issue_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Issue / Bug Report
description: Create a report to help us improve
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to fill out this report and help us improve! :)
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Please provide a clear and concise description of what the issue is.
validations:
required: true
- type: textarea
id: version
attributes:
label: gget version
description: Which version of gget are you using?
placeholder: 0.27.2
validations:
required: true
- type: dropdown
id: os
attributes:
label: Operating System (OS)
description: Which Operating System (OS) did you use?
multiple: true
options:
- Linux
- macOS
- Windows
- Other (please specify above)
- Not applicable
validations:
required: true
- type: dropdown
id: interface
attributes:
label: User interface
description: Did the problem occur when calling gget from the command-line or Python? (Select all that apply.)
multiple: true
options:
- Command-line
- Python
- Google Colab (please include a shareable link above)
- R (please specify Python wrapper above)
- Not applicable
validations:
required: true
- type: dropdown
id: m1
attributes:
label: Are you using a computer with an Apple M1 chip?
description: We are asking this because the M1 chip has been causing [problems](https://github.com/pachterlab/gget/issues/30) for some `gget alphafold` dependencies.
options:
- Not M1
- M1
- Not applicable
validations:
required: true
- type: textarea
id: command
attributes:
label: What is the exact command that was run?
description: Please copy-paste the gget command that caused the problem.
render: shell
- type: textarea
id: command-output
attributes:
label: Which output/error did you get?
description: Please copy-paste the complete output/error returned by the command entered above.
render: shell
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
schedule:
- cron: "0 16 * * 1,4"
push:
paths:
- 'gget/**'
- 'tests/**'

jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python: ['3.9', '3.10']
os: ['ubuntu-22.04']
name: Test on Python ${{ matrix.python }}
steps:
- name: Checkout branch
uses: actions/checkout@main
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Install dependencies
run: pip install -r requirements.txt && pip install -r dev-requirements.txt
- name: Run tests
run: coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests*
35 changes: 35 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deploy
on:
push:
branches:
- main
paths:
- 'docs/**'

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install mdbook
run: |
mkdir mdbook
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.14/mdbook-v0.4.14-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Deploy GitHub Pages
run: |
cd docs/
mdbook build
git worktree add gh-pages
git config user.name "Deploy from CI"
git config user.email ""
cd gh-pages
# Delete the ref to avoid keeping history.
git update-ref -d refs/heads/gh-pages
rm -rf *
mv ../book/* .
git add .
git commit -m "Deploy $GITHUB_SHA to gh-pages"
git push --force --set-upstream origin gh-pages
33 changes: 33 additions & 0 deletions .github/workflows/traffic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Traffic
on:
schedule:
# Runs every week
- cron: "0 0 */7 * *"

jobs:
# This workflow stores repository traffic and clones past the default 2 week period
traffic:
# The type of runner that the job will run on
runs-on: ubuntu-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
ref: "traffic"

# Calculates traffic and clones and stores them in a CSV file
# This workflow is based on https://github.com/marketplace/actions/repository-traffic
- name: GitHub traffic
uses: sangonzal/repository-traffic-action@v.0.1.6
env:
TRAFFIC_ACTION_TOKEN: ${{ secrets.TRAFFIC_ACTION_TOKEN }}

# Commits files to traffic branch
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
author_name: Laura Luebbert
message: "GitHub traffic"
add: "./traffic/*"
ref: "traffic"
132 changes: 132 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Mac OS file that stores custom attributes of its containing folder
.DS_Store

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

0 comments on commit dd80273

Please sign in to comment.