Skip to content

Commit 893c3b5

Browse files
Add GitHub Actions CI workflow and update README with CI badge
1 parent 179866f commit 893c3b5

File tree

2 files changed

+97
-2
lines changed

2 files changed

+97
-2
lines changed

.github/workflows/rust.yml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Rust CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Install Rust
18+
uses: actions-rs/toolchain@v1
19+
with:
20+
toolchain: stable
21+
override: true
22+
components: rustfmt, clippy
23+
24+
- name: Check formatting
25+
uses: actions-rs/cargo@v1
26+
with:
27+
command: fmt
28+
args: --all -- --check
29+
30+
- name: Clippy
31+
uses: actions-rs/cargo@v1
32+
with:
33+
command: clippy
34+
args: -- -D warnings
35+
36+
- name: Build
37+
uses: actions-rs/cargo@v1
38+
with:
39+
command: build
40+
args: --verbose
41+
42+
- name: Run tests
43+
uses: actions-rs/cargo@v1
44+
with:
45+
command: test
46+
args: --verbose
47+
48+
- name: Run examples
49+
uses: actions-rs/cargo@v1
50+
with:
51+
command: run
52+
args: --example basic
53+
54+
coverage:
55+
runs-on: ubuntu-latest
56+
steps:
57+
- uses: actions/checkout@v3
58+
- name: Install Rust
59+
uses: actions-rs/toolchain@v1
60+
with:
61+
toolchain: stable
62+
override: true
63+
64+
- name: Install cargo-tarpaulin
65+
uses: actions-rs/[email protected]
66+
with:
67+
crate: cargo-tarpaulin
68+
version: latest
69+
use-tool-cache: true
70+
71+
- name: Generate coverage report
72+
uses: actions-rs/cargo@v1
73+
with:
74+
command: tarpaulin
75+
args: --out Xml
76+
77+
- name: Upload coverage to Codecov
78+
uses: codecov/codecov-action@v3

README.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Rust Random Logo
22

3+
[![Rust CI](https://github.com/AtelierArith/rust-random-logo/workflows/Rust%20CI/badge.svg)](https://github.com/AtelierArith/rust-random-logo/actions)
4+
35
> **Note**: This project was not created by a human. It was entirely generated by an AI assistant (anthropic:claude-3-7-sonnet-20250219) using the Cline tool.
46
57
A Rust implementation of the RandomLogos fractal generation library, based on the [Improving Fractal Pre-training](http://catalys1.github.io/fractal-pretraining/) approach. This project serves as an educational resource for learning Rust through a practical implementation of fractal generation algorithms.
@@ -15,6 +17,7 @@ This library generates fractal-like images using Iterated Function Systems (IFS)
1517
- High-performance implementation leveraging Rust's zero-cost abstractions
1618
- Comprehensive error handling with custom error types
1719
- Well-documented code with examples and tests
20+
- Continuous Integration with GitHub Actions
1821

1922
## Getting Started
2023

@@ -28,7 +31,7 @@ This library generates fractal-like images using Iterated Function Systems (IFS)
2831
Clone the repository and build the project:
2932

3033
```bash
31-
git clone https://github.com/yourusername/rust-random-logo.git
34+
git clone https://github.com/AtelierArith/rust-random-logo.git
3235
cd rust-random-logo
3336
cargo build --release
3437
```
@@ -137,6 +140,19 @@ rng_name = "Xoshiro256PlusPlus"
137140
seed = 42
138141
```
139142

143+
## Continuous Integration
144+
145+
This project uses GitHub Actions for continuous integration. The CI pipeline includes:
146+
147+
- Code formatting check with `rustfmt`
148+
- Linting with `clippy`
149+
- Building the project
150+
- Running tests
151+
- Running examples
152+
- Generating code coverage reports
153+
154+
You can see the CI workflow configuration in `.github/workflows/rust.yml`.
155+
140156
## Learning Rust with This Project
141157

142158
This project demonstrates several Rust concepts and best practices:
@@ -147,6 +163,7 @@ This project demonstrates several Rust concepts and best practices:
147163
4. **Performance Optimization**: Using efficient data structures and algorithms
148164
5. **Testing**: Comprehensive unit and integration tests
149165
6. **Documentation**: Well-documented code with examples
166+
7. **CI/CD**: Continuous integration with GitHub Actions
150167

151168
Key files to study:
152169

@@ -155,6 +172,7 @@ Key files to study:
155172
- `src/error.rs`: See how custom error types are implemented
156173
- `src/core/renderer.rs`: Learn about image generation and processing
157174
- `tests/integration_tests.rs`: Understand how to write effective tests
175+
- `.github/workflows/rust.yml`: Learn about CI/CD configuration
158176

159177
## Performance
160178

@@ -172,4 +190,3 @@ This project is licensed under the MIT License - see the LICENSE file for detail
172190

173191
- Original [RandomLogos.jl](https://github.com/AtelierArith/RandomLogos.jl) implementation
174192
- [Improving Fractal Pre-training](http://catalys1.github.io/fractal-pretraining/) research
175-
# rust-random-logo

0 commit comments

Comments
 (0)