ci: Add build

This commit is contained in:
Timo Reymann
2023-02-15 13:36:20 +01:00
parent da13b88d3a
commit 7a9b30cc46
+16
View File
@@ -3,10 +3,26 @@ version: "2.1"
orbs: orbs:
shellcheck: circleci/shellcheck@3.1.2 shellcheck: circleci/shellcheck@3.1.2
jobs:
build:
docker:
- image: cimg/base:2023.02
steps:
- checkout
- setup_remote_docker
- run:
name: Build script
command: make build
- store_artifacts:
path: dist/
workflows: workflows:
main: main:
jobs: jobs:
- shellcheck/check: - shellcheck/check:
name: shellcheck name: shellcheck
dir: src dir: src
- build:
requires:
- shellcheck