Skip to content

Commit cb93315

Browse files
authored
Merge pull request #1 from Engineers-Cradle/dev
ci: auto ci build testing
2 parents a1d5030 + 6d90db2 commit cb93315

2 files changed

Lines changed: 30 additions & 1 deletion

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Build Rust code ๐Ÿฆ€"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: "Checkout"
14+
uses: actions/checkout@v2
15+
- name: "Install Rust"
16+
uses: actions-rs/toolchain@v1
17+
with:
18+
toolchain: stable
19+
override: true
20+
- name: Run cargo check
21+
uses: actions-rs/cargo@v1
22+
with:
23+
command: check

โ€ŽREADME.mdโ€Ž

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Gen Avatar ๐Ÿ˜Ž
22

3+
![forthebadge](https://forthebadge.com/images/badges/open-source.svg)
4+
![forthebadge](https://img.shields.io/github/languages/top/Engineers-Cradle/gen-avatar?logo=rust&style=for-the-badge)
5+
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Engineers-Cradle/gen-avatar/build-code.yaml?logo=rust&style=for-the-badge)
6+
37
Generate a User Avatar with the initials of the name.
48

59
## Features ๐Ÿš€
@@ -11,13 +15,15 @@ Generate a User Avatar with the initials of the name.
1115
## Installation ๐Ÿ› ๏ธ
1216

1317
```bash
14-
git clone https://github.com/EngineersCraddle/gen-avatar.git
18+
git clone https://github.com/Engineers-Cradle/gen-avatar.git
1519
cd gen-avatar
1620
cargo build --release
1721
```
1822

1923
## Configuration ๐Ÿ› ๏ธ
2024

25+
Create a `.env` file in the root directory and add the following configuration.
26+
2127
```bash
2228
WEB_SERVER_PORT=
2329
REDIS_URL=

0 commit comments

Comments
ย (0)