-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from atc0005/ghaw-refactor
Refactor GitHub Actions workflows to import logic
- Loading branch information
Showing
11 changed files
with
90 additions
and
440 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.