Skip to content

Commit a9e9297

Browse files
chore: change tags in README.md to avoid GitHub caching
1 parent 315a1fa commit a9e9297

2 files changed

Lines changed: 41 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os: [ubuntu-latest, macos-latest, windows-latest]
17+
python-version: ['3.11', '3.12', '3.13']
18+
19+
runs-on: ${{ matrix.os }}
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
24+
- name: Set up Python ${{ matrix.python-version }}
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: ${{ matrix.python-version }}
28+
29+
- name: Install dependencies
30+
run: |
31+
python -m pip install --upgrade pip
32+
pip install -e .
33+
34+
- name: Test import
35+
run: python -c "from prosaic.__main__ import ProsaicApp; print('OK')"
36+
37+
- name: Test CLI entrypoint
38+
run: prosaic --help

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Prosaic
22

3-
[![Publish to PyPI](https://github.com/DeepanshKhurana/Prosaic/actions/workflows/publish.yml/badge.svg)](https://github.com/DeepanshKhurana/Prosaic/actions/workflows/publish.yml)
3+
[![Build](https://img.shields.io/github/actions/workflow/status/DeepanshKhurana/Prosaic/ci.yml?label=build)](https://github.com/DeepanshKhurana/Prosaic/actions/workflows/ci.yml)
44
[![PyPI version](https://img.shields.io/pypi/v/prosaic-app)](https://pypi.org/project/prosaic-app/)
5-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5+
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
66

77
A writer-first terminal writing app built with Python and Textual, built with the assistance of LLM/Copilot tools.
88

9-
**Website:** [prosaic.dimwit.me](https://prosaic.dimwit.me)
9+
[Landing page](https://prosaic.dimwit.me)
1010

1111
## Motivation
1212

0 commit comments

Comments
 (0)