mirror of
https://github.com/gogrlx/bitcask.git
synced 2026-04-02 02:58:59 -07:00
* Added Github Actions workflow for Reviewing, Building and Testing * Added codecov workflow * Fix version of Go used for codecov workflow * Fixed coverage options
12 lines
223 B
YAML
12 lines
223 B
YAML
name: Docker
|
|
on: [pull_request]
|
|
jobs:
|
|
build:
|
|
name: Build Image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Build
|
|
run: docker build -t bitcask .
|