backend,proto: remove

This commit is contained in:
Patrik Oldsberg
2020-03-09 16:25:19 +01:00
parent 93924f1751
commit bbff5aaa1a
154 changed files with 5 additions and 7248 deletions
-2
View File
@@ -5,8 +5,6 @@ on:
paths:
- '*'
- '.github/workflows/frontend.yml'
- '!backend/inventory/**'
- '!backend/scaffolder/**'
jobs:
build:
-29
View File
@@ -1,29 +0,0 @@
name: Inventory CI
on:
push:
paths:
- 'backend/inventory/**'
- '.github/workflows/inventory.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.12
- name: checkout code
uses: actions/checkout@v1
- name: setup env
run: |
echo "::set-env name=GOPATH::$(go env GOPATH)"
echo "::add-path::$(go env GOPATH)/bin"
shell: bash
- name: build
run: go build -v ./...
working-directory: ./backend/inventory
- name: test
run: go test ./... -short
working-directory: ./backend/inventory
-29
View File
@@ -1,29 +0,0 @@
name: Scaffolder CI
on:
push:
paths:
- 'backend/scaffolder/**'
- '.github/workflows/scaffolder.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.12
- name: checkout code
uses: actions/checkout@v1
- name: setup env
run: |
echo "::set-env name=GOPATH::$(go env GOPATH)"
echo "::add-path::$(go env GOPATH)/bin"
shell: bash
- name: build
run: go build -v ./...
working-directory: ./backend/scaffolder
- name: test
run: go test ./... -short
working-directory: ./backend/scaffolder