-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
1,903 additions
and
785 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
Dockerfile | ||
Dockerfile.* | ||
|
||
# Ignore private folder and any file with private in the name: | ||
**/**/private/ | ||
*private* | ||
# Except for zetch files: | ||
!*private*.zetch.* | ||
!*private*.*.zetch | ||
|
||
**/**/process_data/ | ||
**/**/logs/ | ||
|
||
# Tempate files | ||
.cop.*.yml | ||
|
||
scratch_space.ipynb | ||
|
||
**/**/node_modules/ | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# Files flagged for ignore: which have .gitignore. inside them: | ||
*.gitignore.* | ||
*_gitignore.* | ||
|
||
# Celery: | ||
celerybeat-schedule.db | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Pdm: | ||
.pdm-python | ||
|
||
# Distribution / packaging | ||
.Python | ||
sds/sworker/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
# leptos build files: | ||
**/**/static/rsite/ | ||
# Compiled css: | ||
**/**/static/css/ | ||
|
||
# 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 | ||
**/**/coverage/ | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.py,cover | ||
**/**/.hypothesis/ | ||
**/**/.pytest_cache/ | ||
**/**/.ruff_cache/ | ||
**/**/cover/ | ||
**/**/.nox/ | ||
*.prof | ||
prof/ | ||
**/**/perf_profiles/ | ||
**/**/test-results/ | ||
**/**/playwright-report/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
db.sqlite3-journal | ||
|
||
# Flask stuff: | ||
**/**/instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# PyBuilder | ||
**/**/.pybuilder/ | ||
**/**/target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
**/**/profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
# For a library or package, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# .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/ | ||
|
||
# mkdocs local build directory: | ||
**/**/site/ | ||
**/**/docs/js_ref/ | ||
**/**/docs/rust_ref/ | ||
.staticrypt.json | ||
|
||
# Vscode internals | ||
**/**/.vscode/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mypy | ||
**/**/.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
**/**/.pyre/ | ||
|
||
# pytype static type analyzer | ||
**/**/.pytype/ | ||
|
||
# Cython debug symbols | ||
**/**/cython_debug/ | ||
|
||
# Pycharm | ||
**/**/.idea/ | ||
|
||
# Mac stuff | ||
.DS_Store | ||
|
||
**/**/template_test_build/ | ||
|
||
# User |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Setup Rust | ||
description: "Installs latest stable rust, and sets up sscache for caching." | ||
inputs: | ||
qa: | ||
description: "Whether things like cargo-hack need installing." | ||
required: false | ||
default: "false" | ||
test: | ||
description: "Whether things like nextest need installing." | ||
required: false | ||
default: "false" | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Install rust toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: rustfmt, clippy | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Set Rust caching env vars | ||
shell: bash | ||
run: | | ||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
# Really this would need to be run as a post task to be of any use (to actually see hits), | ||
# but post in composite action not currently supported: | ||
# https://github.com/actions/runner/issues/1478 | ||
# - name: Run sccache stat for check | ||
# shell: bash | ||
# run: ${SCCACHE_PATH} --show-stats | ||
- name: "Install cargo-hack, used for feature checking in pre-commit." | ||
if: ${{ inputs.qa == 'true' }} | ||
uses: taiki-e/install-action@cargo-hack | ||
- name: Install nextest | ||
if: ${{ inputs.test == 'true' }} | ||
uses: taiki-e/install-action@nextest |
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
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
Oops, something went wrong.