Skip to content

Commit adffee0

Browse files
committed
feat(ci): introduce CI setup
1 parent 78cd000 commit adffee0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yml .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Build
22
on:
33
push:
44
branches: [ "master" ]

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
![Build](https://github.com/AndreiPashkin/compose-idents/actions/workflows/build.yml/badge.svg)
2+
13
# compose-idents
24

35
A procedural macro that allows to construct identifiers from one or more arbitrary parts.
46

57
## Motivation
68

7-
Rust's declarative macros do not allow generating new identifiers, because they are designed to operate on
8-
the syntactic level (as opposed to the lexical level) using simple pattern matching.
9+
Rust's declarative macros do not allow generating new identifiers, because they are designed to operate on
10+
the syntactic level (as opposed to the lexical level) using simple pattern matching.
911

10-
For example the following code won't work:
12+
For example the following code won't work:
1113
```rust
1214
macro_rules! my_macro {
1315
($name:ident) => {

0 commit comments

Comments
 (0)