Skip to content

Create dependabot.yml #7

Create dependabot.yml

Create dependabot.yml #7

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15.6
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make build-linux
- name: Upload Build Artifact
uses: actions/upload-artifact@v2.1.4
with:
# Artifact name
name: xtradb-proxy-check
# A file, directory or wildcard pattern that describes what to upload
path: out/xtradb-proxy-check_linux
# The desired behavior if no files are found using the provided path.
if-no-files-found: error