Skip to content

Bump peter-evans/create-pull-request from 5.0.1 to 5.0.2 #81

Bump peter-evans/create-pull-request from 5.0.1 to 5.0.2

Bump peter-evans/create-pull-request from 5.0.1 to 5.0.2 #81

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- "!*"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
REGISTRY_USERNAME: kenchan0130
REGISTRY_HOST: index.docker.io
steps:
- uses: actions/checkout@v3
- name: Install dgoss
run: |
curl -sfL https://goss.rocks/install | sudo sh
- name: Build docker image
run: |
make build
- name: Show docker images
run: |
docker images
- name: Run test
run: |
make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Dockerfile lint
uses: brpaz/hadolint-action@master