-
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.
Add existing logos from BrandingResources
- Loading branch information
1 parent
96ba54a
commit 2ac365b
Showing
70 changed files
with
2,951 additions
and
0 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,61 @@ | ||
# This is the workflow for testing the code quality: | ||
# Check formatting of Markdown, YAML, TOML, etc. files | ||
|
||
name: Check formatting | ||
|
||
on: | ||
# Trigger the workflow on push | ||
push: | ||
# Every branch | ||
branches: | ||
- '**' | ||
# But do not run this workflow on creating a new tag starting with 'v', e.g. 'v1.0.3' (see pypi-publish.yml) | ||
tags-ignore: | ||
- 'v*' | ||
# Trigger the workflow on pull request | ||
pull_request: | ||
branches: | ||
- '**' | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Allow only one concurrent workflow, skipping runs queued between the run in-progress and latest queued. | ||
# And cancel in-progress runs. | ||
concurrency: | ||
group: | ||
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Job: Check code quality and consistency | ||
code-quality: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install npm dependencies | ||
# Install 'prettier' for code formatting of Markdown, YAML, etc. files | ||
# Install 'prettier-plugin-toml' plugin for code formatting of TOML files | ||
run: npm install prettier prettier-plugin-toml --save-dev --save-exact | ||
|
||
# Check formatting of Markdown, YAML, TOML, etc. files with Prettier in the project root | ||
- name: Check formatting of Markdown, YAML, TOML, etc. files | ||
id: check_formatting | ||
continue-on-error: true | ||
run: npx prettier . --check --config=prettierrc.toml | ||
|
||
- name: Suggestion to fix non-code formatting issues (for *.md, etc.) | ||
if: steps.check_formatting.outcome == 'failure' | ||
run: | ||
echo "In project root run 'npx prettier . --write | ||
--config=prettierrc.toml' and commit changes to fix issues." | ||
|
||
- name: Force fail if check formatting step failed | ||
if: steps.check_formatting.outcome == 'failure' | ||
run: exit 1 |
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,11 @@ | ||
# Jupyter | ||
.ipynb_checkpoints | ||
|
||
# macOS | ||
.DS_Store | ||
|
||
# npm | ||
node_modules | ||
|
||
# PyCharm | ||
.idea/ |
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 @@ | ||
docs/assets |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions
44
EasyCrystallography/source/EasyCrystallography-logo_lightmode_wfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.