Skip to content

Commit

Permalink
Add long description for build tool compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
OLILHR committed Aug 6, 2024
1 parent 6c38cbd commit 2bdd2f4
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 27 deletions.
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
19 changes: 18 additions & 1 deletion README.md
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
```

0 comments on commit 2bdd2f4

Please sign in to comment.