init. dec, hex, b64, bytes representation

This commit is contained in:
arnaucube
2021-03-30 16:57:22 +02:00
commit 1e6b085fc5
6 changed files with 548 additions and 0 deletions

11
.github/workflows/clippy.yml vendored Normal file
View File

@@ -0,0 +1,11 @@
name: Clippy check
on: [push, pull_request]
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

14
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: |
cargo run 21888242871839275222246405745257275088696311157297823662689037894645226208583