-
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
long description
for build tool compatibility
- Loading branch information
Showing
2 changed files
with
44 additions
and
27 deletions.
There are no files selected for viewing
52 changes: 26 additions & 26 deletions
52
.github/workflows/unittesting.yml → .github/workflows/unittests.yml
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 |
---|---|---|
@@ -1,27 +1,27 @@ | ||
name: "Unittesting" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: {} | ||
jobs: | ||
pytest: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: ["3.12"] | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox | ||
- name: Run unittests via tox | ||
run: | | ||
name: "Unittests" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: {} | ||
jobs: | ||
pytest: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: ["3.12"] | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox | ||
- name: Run unittests via tox | ||
run: | | ||
tox -e testing |
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 |
---|---|---|
@@ -1 +1,18 @@ | ||
# alloy | ||
<div align="center"> | ||
|
||
# alloy | ||
|
||
CLI tool designed to consolidate codebases into a single markdown file. | ||
|
||
![Unittests status badge](https://github.com/OLILHR/alloy/workflows/Unittests/badge.svg) | ||
![Coverage status badge](https://github.com/OLILHR/alloy/workflows/Coverage/badge.svg) | ||
![Pylint status badge](https://github.com/OLILHR/alloy/workflows/Linting/badge.svg) | ||
![Formatting status badge](https://github.com/OLILHR/alloy/workflows/Formatting/badge.svg) | ||
|
||
</div> | ||
|
||
### Installation | ||
|
||
```sh | ||
pip install | ||
``` |