Skip to content

Commit f55c167

Browse files
committed
feat: inital and hopefully final commit :P
0 parents  commit f55c167

File tree

7 files changed

+708
-0
lines changed

7 files changed

+708
-0
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
open_collective: denosaurs
2+
github: denosaurs

.github/workflows/checks.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout sources
10+
uses: actions/checkout@v2
11+
12+
- name: Setup latest deno version
13+
uses: denolib/setup-deno@v2
14+
with:
15+
deno-version: v1.x
16+
17+
- name: Run deno fmt
18+
run: deno fmt --check
19+
20+
- name: Run deno lint
21+
run: deno lint --unstable
22+
23+
test:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout sources
27+
uses: actions/checkout@v2
28+
29+
- name: Setup latest deno version
30+
uses: denolib/setup-deno@v2
31+
with:
32+
deno-version: v1.x
33+
34+
- name: Run deno test
35+
run: deno test --allow-none

.github/workflows/depsbot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: depsbot
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
schedule:
9+
- cron: "0 0 */2 * *"
10+
11+
jobs:
12+
run:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v2
17+
18+
- name: Run depsbot
19+
uses: denosaurs/depsbot@master
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 the denosaurs team
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# byte_type
2+
3+
[![Tags](https://img.shields.io/github/release/denosaurs/byte_type)](https://github.com/denosaurs/byte_type/releases)
4+
[![CI Status](https://img.shields.io/github/workflow/status/denosaurs/byte_type/check)](https://github.com/denosaurs/byte_type/actions)
5+
[![Dependencies](https://img.shields.io/github/workflow/status/denosaurs/byte_type/depsbot?label=dependencies)](https://github.com/denosaurs/depsbot)
6+
[![License](https://img.shields.io/github/license/denosaurs/byte_type)](https://github.com/denosaurs/byte_type/blob/master/LICENSE)
7+
8+
`byte_type` is a small helper module for working with different raw types
9+
represented as a bunch of bytes.
10+
11+
## Maintainers
12+
13+
- Elias Sjögreen ([@eliassjogreen](https://github.com/eliassjogreen))
14+
15+
## Other
16+
17+
### Contribution
18+
19+
Pull request, issues and feedback are very welcome. Code style is formatted with
20+
`deno fmt` and commit messages are done following Conventional Commits spec.
21+
22+
### Licence
23+
24+
Copyright 2021, the denosaurs team. All rights reserved. MIT license.

0 commit comments

Comments
 (0)