Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Add initial automated release build workflow #44

Add initial automated release build workflow

Add initial automated release build workflow #44

# Copyright 2022 Adam Chalkley
#
# https://github.com/atc0005/go-ezproxy
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Project Analysis
on:
pull_request:
# `synchronized` seems to equate to pushing new commits to a linked branch
# (whether force-pushed or not)
types: [opened, synchronize]
# The branches below must be a subset of the branches above
# branches: [master]
jobs:
lint:
# Only run this job on non-push events (e.g., pull requests)
if: github.event_name != 'push'
name: Lint
uses: atc0005/shared-project-resources/.github/workflows/lint-project-files.yml@master
vulnerability:
name: Vulnerability
uses: atc0005/shared-project-resources/.github/workflows/vulnerability-analysis.yml@master
go_mod_validation:
# Only run this job on non-push events (e.g., pull requests)
if: github.event_name != 'push'
name: Go Module Validation
uses: atc0005/shared-project-resources/.github/workflows/go-mod-validation.yml@master
dependency_updates:
# Only run this job on non-push events (e.g., pull requests)
if: github.event_name != 'push'
name: Dependency Updates
uses: atc0005/shared-project-resources/.github/workflows/dependency-updates.yml@master