Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor GitHub Actions workflows to import logic #310

Merged
merged 1 commit into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 0 additions & 69 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

118 changes: 0 additions & 118 deletions .github/workflows/lint-and-build-code.yml

This file was deleted.

83 changes: 0 additions & 83 deletions .github/workflows/lint-and-build-using-make.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/lint-and-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2022 Adam Chalkley
#
# https://github.com/atc0005/check-mail
#
# Licensed under the MIT License. See LICENSE file in the project root for
# full license information.

name: Lint and Build

# Run builds for Pull Requests (new, updated)
# `synchronized` seems to equate to pushing new commits to a linked branch
# (whether force-pushed or not)
on:
pull_request:
types: [opened, synchronize]

jobs:
lint_and_build_using_ci_matrix:
name: CI matrix
uses: atc0005/shared-project-resources/.github/workflows/lint-and-build-using-ci-matrix.yml@master

lint_and_build_using_makefile:
name: Makefile
with:
# Indicate to imported workflow that the gogeninstall Makefile recipe is
# needed.
gogeninstall: true
uses: atc0005/shared-project-resources/.github/workflows/lint-and-build-using-make.yml@master
62 changes: 0 additions & 62 deletions .github/workflows/lint-and-test-only.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/lint-docker-files.yml

This file was deleted.

Loading