Skip to content

Commit 8c20448

Browse files
committed
test: add workflow
1 parent 80f2d51 commit 8c20448

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: oven-sh/setup-bun@v1
14+
with:
15+
bun-version: 1.1.8
16+
- run: bun install
17+
- run: bun test

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# EIP-191 Code Signature (Typescript)
22

3+
[![test](https://github.com/andreas-timm/code-signature-ts/actions/workflows/test.yml/badge.svg)](https://github.com/andreas-timm/code-signature-ts/actions/workflows/test.yml)
4+
35
## Motivation
46
Ensuring the integrity and authenticity of text files, especially source code, makes sense. This module offers a tool to sign text files with an EVM account using EIP-191[^1] signatures, providing an alternative to GPG that is not tied to an email address.
57

0 commit comments

Comments
 (0)