Skip to content

Commit

Permalink
Merge pull request #19 from devilbox/release-0.9
Browse files Browse the repository at this point in the history
Release 0.9
  • Loading branch information
cytopia authored Dec 18, 2022
2 parents db53828 + 97520a1 commit 4fbcfb4
Show file tree
Hide file tree
Showing 8 changed files with 216 additions and 136 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---

###
### Lints all generic and json files in the whole git repository
###

name: linting
on:
pull_request:
push:
branches:
- master
tags:

jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: False
matrix:
target:
- Linting
name: "[ ${{ matrix.target }} ]"
steps:
- name: Checkout repository
uses: actions/checkout@master

- name: Lint files
run: |
make lint
30 changes: 30 additions & 0 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: test-linux
on:
pull_request:
push:
branches:
- master
tags:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: False

name: "[test] [linux]"
steps:
# ------------------------------------------------------------
# Setup
# ------------------------------------------------------------
- name: Checkout repository
uses: actions/checkout@v2

# ------------------------------------------------------------
# Tests: Behaviour
# ------------------------------------------------------------
- name: test
shell: bash
run: |
make test
30 changes: 30 additions & 0 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: test-macos
on:
pull_request:
push:
branches:
- master
tags:

jobs:
test:
runs-on: macos-latest
strategy:
fail-fast: False

name: "[test] [macos]"
steps:
# ------------------------------------------------------------
# Setup
# ------------------------------------------------------------
- name: Checkout repository
uses: actions/checkout@v2

# ------------------------------------------------------------
# Tests: Behaviour
# ------------------------------------------------------------
- name: test
shell: bash
run: |
make test
30 changes: 30 additions & 0 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: test-windows
on:
pull_request:
push:
branches:
- master
tags:

jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: False

name: "[test] [windows]"
steps:
# ------------------------------------------------------------
# Setup
# ------------------------------------------------------------
- name: Checkout repository
uses: actions/checkout@v2

# ------------------------------------------------------------
# Tests: Behaviour
# ------------------------------------------------------------
- name: test
shell: bash
run: |
make test
56 changes: 0 additions & 56 deletions .travis.yml

This file was deleted.

8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# cert-gen

[![Build Status](https://travis-ci.org/devilbox/cert-gen.svg?branch=master)](https://travis-ci.org/devilbox/cert-gen)
[![Discord](https://img.shields.io/discord/1051541389256704091?color=8c9eff&label=Discord&logo=discord)](https://discord.gg/2wP3V6kBj4)
![Tag](https://img.shields.io/github/tag/devilbox/cert-gen.svg)
[![Discord](https://img.shields.io/discord/1051541389256704091?color=8c9eff&label=Discord&logo=discord)](https://discord.gg/2wP3V6kBj4)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)

[![linting](https://github.com/devilbox/cert-gen/workflows/linting/badge.svg)](https://github.com/devilbox/cert-gen/actions/workflows/linting.yml)
[![test-linux](https://github.com/devilbox/cert-gen/workflows/test-linux/badge.svg)](https://github.com/devilbox/cert-gen/actions/workflows/test-linux.yml)
[![test-macos](https://github.com/devilbox/cert-gen/workflows/test-macos/badge.svg)](https://github.com/devilbox/cert-gen/actions/workflows/test-macos.yml)
[![test-windows](https://github.com/devilbox/cert-gen/workflows/test-windows/badge.svg)](https://github.com/devilbox/cert-gen/actions/workflows/test-windows.yml)

Easily create your own CA and self-signed certificates.

The generated CA can be imported into Chrome, Firefox or Internet Explorer for local development.
Expand Down
Loading

0 comments on commit 4fbcfb4

Please sign in to comment.