Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Minimum Viable Blockchain #1

Merged
merged 41 commits into from
Feb 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
232da23
feat: add scaffolded code
ccamel Jan 31, 2022
641f0f9
refactor: move okp4 content to project root
ccamel Jan 31, 2022
d69e305
refactor: remove unused vuejs app
ccamel Feb 1, 2022
aef474d
chore: exclude some unwanted files from git
ccamel Feb 1, 2022
e8540c6
chore: set some initial configuration values
ccamel Feb 1, 2022
b543b1d
ci(workflow): add lint-go job
ccamel Feb 2, 2022
af2a91b
chore: add golangci (standard) configuration
ccamel Feb 2, 2022
ef02b1a
style: make go linter happy again
ccamel Feb 2, 2022
0550908
chore: make yaml linter happy again
ccamel Feb 2, 2022
f4b413f
docs: initialize read-me content
ccamel Feb 2, 2022
c45f031
ci(workflow): set name for workflow
ccamel Feb 2, 2022
f89b956
chore(project): add makefile for linting code source
ccamel Feb 2, 2022
e22be6a
chore(project): add missing yaml file extension
ccamel Feb 2, 2022
78ca536
chore(project): add version
ccamel Feb 2, 2022
0cd6972
chore(project): exclude 'target' folder from git tracking
ccamel Feb 2, 2022
ddcc4e9
chore(project): add goals 'install', 'build' and 'start'
ccamel Feb 2, 2022
aab8519
chore(project): fix documentation
ccamel Feb 3, 2022
2c8ad28
chore(project): dockerize project
ccamel Feb 3, 2022
c7dca61
chore: fix typos and improve doc a bit
ccamel Feb 3, 2022
69bdbd3
ci(workflow): add dockerfile linting
ccamel Feb 3, 2022
2be93a8
ci(workflow): add build workflow (go, docker)
ccamel Feb 3, 2022
27ed968
ci(bot): add gomod package ecosystem
ccamel Feb 3, 2022
6962fce
ci(bot): add docker package ecosystem
ccamel Feb 3, 2022
6ee87f8
ci(bot): limit open pull requests to 2 for github actions
ccamel Feb 3, 2022
fee7a06
chore(project): add goal 'test'
ccamel Feb 3, 2022
8873b06
ci(workflow): add workflow 'test'
ccamel Feb 3, 2022
76c379e
chore: improve cosmetic
ccamel Feb 3, 2022
f3a3995
docs: update subtitle
ccamel Feb 3, 2022
d884efa
ci(workflow): remove unused workflow
ccamel Feb 3, 2022
a637f9f
ci(worflow): add 'publish' workflow
ccamel Feb 3, 2022
a277ac6
chore: remove useless directives
ccamel Feb 4, 2022
04f0a19
chore(project): fix incorrectly implemented goal install
ccamel Feb 4, 2022
5bae339
chore: adopt alpine docker image
ccamel Feb 4, 2022
1d47265
ci(workflow): fix context setup
ccamel Feb 4, 2022
62eabaa
chore: improve initial configuration for devnet
ccamel Feb 4, 2022
26ba51c
ci(workflow): fix workflow name
ccamel Feb 5, 2022
82f472f
docs: add status badge for build
ccamel Feb 5, 2022
7ee7d0a
docs: add status badge for test
ccamel Feb 5, 2022
48e6d04
chore(project): add semantic release configuration
ccamel Feb 7, 2022
97e66e6
ci(workflow): add release workflow
ccamel Feb 7, 2022
30468fe
fix: Add make init and fix start
ad2ien Feb 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci(workflow): add workflow 'test'
  • Loading branch information
ccamel committed Feb 3, 2022
commit 8873b06b7de651dd8949f64c135cdc5a278ca595
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches: [ main ]

pull_request:
branches: [ main ]

workflow_dispatch:

jobs:
test-go:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2

- name: Setup Go environment
uses: actions/setup-go@v2.1.5
with:
go-version: '1.17.6'

- name: Test go project
run: |
make test-go