Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsam authored Feb 6, 2024
1 parent 7793e15 commit f5201f2
Show file tree
Hide file tree
Showing 14 changed files with 80 additions and 50 deletions.
9 changes: 9 additions & 0 deletions .github/linters/.yaml-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Extends the default yamllint config by adjusting some options.
extends: default

rules:
comments-indentation: disable
line-length:
level: warning
allow-non-breakable-inline-mappings: true
truthy: disable
2 changes: 1 addition & 1 deletion .github/workflows/add-labels-standardized.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'add labels standardized'
name: add labels standardized

on:
issues:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/add-to-project-garage-dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: 'add to project garage dependabot'
name: add to project garage dependabot

on:
pull_request:
branches: [main]

jobs:

add-to-project-dependabot:
secrets:
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }}
uses: senzing-factory/build-resources/.github/workflows/add-to-project-dependabot.yaml@main
uses: senzing-factory/build-resources/.github/workflows/add-to-project-dependabot.yaml@v1
with:
project: ${{ vars.SENZING_PROJECT_GARAGE }}
8 changes: 4 additions & 4 deletions .github/workflows/add-to-project-garage.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'add to project garage'
name: add to project garage

on:
issues:
Expand All @@ -8,11 +8,11 @@ on:

jobs:
add-to-project:
name: Add issue to project
name: add issue to project
runs-on: ubuntu-latest
steps:
- name: Assign issue to project
- name: assign issue to project
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/${{ vars.SENZING_GITHUB_ACCOUNT_NAME }}/projects/${{ vars.SENZING_PROJECT_GARAGE }}
github-token: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
project-url: https://github.com/orgs/${{ vars.SENZING_GITHUB_ACCOUNT_NAME }}/projects/${{ vars.SENZING_PROJECT_GARAGE }}
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-approve-and-merge.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'dependabot approve and merge'
name: dependabot approve and merge

on:
pull_request:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-proxy-pull.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'go proxy pull'
name: go proxy pull

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:
go-proxy-pull:
runs-on: ubuntu-latest
steps:
- name: Pull new module version
- name: pull new module version
uses: andrewslotin/[email protected]
with:
import_path: github.com/senzing-garage/demo-entity-search
import_path: github.com/${{ github.repository }}
19 changes: 10 additions & 9 deletions .github/workflows/go-test-darwin.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'go test darwin'
name: go test darwin

on: [push]

Expand All @@ -12,34 +12,35 @@ permissions:

jobs:
go-test-darwin:
name: "go test with Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [macos-latest]
senzingapi-version: [staging]
name: "go test with Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"

steps:
- name: Checkout repository
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup go
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Install Senzing API
uses: Senzing/github-action-install-senzing-api@latest
- name: install Senzing API
uses: Senzing/github-action-install-senzing-api@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}

- name: Copy /etc files
- name: copy /etc files
run: sudo cp testdata/senzing-license/g2.lic /opt/senzing/g2/etc/g2.lic

- name: Copy test database files
- name: copy test database files
run: mkdir /tmp/sqlite && cp testdata/sqlite/G2C.db /tmp/sqlite/G2C.db

- name: Run go test
- name: run go test
run: go test -exec /Users/runner/work/demo-entity-search/demo-entity-search/bin/macos_exec_dyld.sh -v -p 1 ./...
20 changes: 11 additions & 9 deletions .github/workflows/go-test-linux.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'go test linux'
name: go test linux

on: [push]

Expand All @@ -11,33 +11,35 @@ permissions:

jobs:
go-test-linux:
name: "go test with Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [ubuntu-latest]
senzingapi-version: [latest]
name: "go test with Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"

steps:
- name: Checkout repository
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup go
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Install Senzing API
uses: Senzing/github-action-install-senzing-api@latest
- name: install Senzing API
uses: Senzing/github-action-install-senzing-api@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}

- name: Copy /etc files
- name: copy /etc files
run: sudo cp testdata/senzing-license/g2.lic /etc/opt/senzing/g2.lic

- name: Copy test database files
- name: copy test database files
run: mkdir /tmp/sqlite && cp testdata/sqlite/G2C.db /tmp/sqlite/G2C.db
- name: Run go test

- name: run go test
run: go test -v -p 1 ./...
23 changes: 12 additions & 11 deletions .github/workflows/go-test-windows.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'go test windows'
name: go test windows

on: [push]

Expand All @@ -10,37 +10,38 @@ permissions:

jobs:
go-test-windows:
name: "go test with Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [windows-latest]
senzingapi-version: [staging]
name: "go test with Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"

steps:
- name: Checkout repository
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup go
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Install Senzing API
uses: Senzing/github-action-install-senzing-api@latest
- name: install Senzing API
uses: Senzing/github-action-install-senzing-api@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}

- name: Add to "Path" environment variable
run: echo "C:\Program Files\Senzing\g2\lib" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: add to "Path" environment variable
run: echo "C:\Program Files\Senzing\g2\lib" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append

- name: Copy /etc files
- name: copy /etc files
run: copy testdata/senzing-license/g2.lic "C:\Program Files\Senzing\g2\etc\g2.lic"

- name: Copy test database files
- name: copy test database files
run: mkdir "C:\Temp\sqlite" && copy testdata/sqlite/G2C.db "C:\Temp\sqlite\G2C.db"

- name: Run go test
- name: run go test
run: go test -v -p 1 ./...
2 changes: 1 addition & 1 deletion .github/workflows/gofmt.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'gofmt'
name: gofmt

on:
pull_request:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/gosec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'gosec'
name: gosec

on:
push:
Expand All @@ -16,11 +16,12 @@ jobs:
runs-on: ubuntu-latest
env:
GO111MODULE: on

steps:
- name: Checkout Source
- name: checkout repository
uses: actions/checkout@v4

- name: Run Gosec Security Scanner
- name: run Gosec Security Scanner
uses: securego/[email protected]
with:
args: ./...
16 changes: 16 additions & 0 deletions .github/workflows/lint-workflows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: lint workflows

on:
push:
branches-ignore: [main]
pull_request:
branches: [main]

permissions:
contents: read
packages: read
statuses: write

jobs:
lint-workflows:
uses: senzing-factory/build-resources/.github/workflows/lint-workflows.yaml@v1
2 changes: 1 addition & 1 deletion .github/workflows/make-go-github-file.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'make go github file'
name: make go github file

on:
push:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/make-go-tag.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'make go tag'
name: make go tag

on:
push:
Expand All @@ -10,11 +10,12 @@ permissions:

jobs:
make-go-tag:
name: Make a vM.m.P tag
name: make a vM.m.P tag
runs-on: ubuntu-latest

steps:
- name: Checkout repository
- name: checkout repository
uses: actions/checkout@v4

- name: Make go version tag
- name: make go version tag
uses: senzing-factory/github-action-make-go-tag@v1

0 comments on commit f5201f2

Please sign in to comment.