Skip to content

Commit

Permalink
Add existing logos from BrandingResources
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSazonov committed Jan 30, 2025
1 parent 96ba54a commit 2ac365b
Show file tree
Hide file tree
Showing 70 changed files with 2,951 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/ci-testing.yaml
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
11 changes: 11 additions & 0 deletions .gitignore
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/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docs/assets
11 changes: 11 additions & 0 deletions EasyCrystallography/icons/ecr-icon_bw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions EasyCrystallography/logos/ecr-logo_132x32_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions EasyCrystallography/logos/ecr-logo_132x32_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions EasyCrystallography/logos/ecr-logo_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions EasyCrystallography/logos/ecr-logo_light.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.
Binary file added EasyDiffraction/icons/ed-icon_256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions EasyDiffraction/icons/ed-icon_bw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2ac365b

Please sign in to comment.