forked from TrueCloudLab/certificates
[actions] update test action as well
This commit is contained in:
parent
42a470d803
commit
819d466790
2 changed files with 37 additions and 8 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
||||||
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
|
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
|
||||||
# skip-build-cache: true
|
# skip-build-cache: true
|
||||||
-
|
-
|
||||||
name: Lint, Test, Build
|
name: Test, Build
|
||||||
id: lint_test_build
|
id: lint_test_build
|
||||||
run: V=1 make ci
|
run: V=1 make ci
|
||||||
|
|
||||||
|
|
43
.github/workflows/test.yml
vendored
43
.github/workflows/test.yml
vendored
|
@ -13,19 +13,48 @@ jobs:
|
||||||
name: Lint, Test, Build
|
name: Lint, Test, Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
-
|
||||||
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Setup Go
|
-
|
||||||
|
name: Setup Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: '1.15.6'
|
go-version: '1.15.6'
|
||||||
- name: Install Deps
|
-
|
||||||
|
name: Install Deps
|
||||||
id: install-deps
|
id: install-deps
|
||||||
run: sudo apt-get -y install libpcsclite-dev
|
run: sudo apt-get -y install libpcsclite-dev
|
||||||
- name: Lint, Test, Build
|
-
|
||||||
id: lintTestBuild
|
name: golangci-lint
|
||||||
run: V=1 make -j1 bootstrap ci
|
uses: golangci/golangci-lint-action@v2
|
||||||
- name: Codecov
|
with:
|
||||||
|
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
|
||||||
|
version: 'latest'
|
||||||
|
|
||||||
|
# Optional: working directory, useful for monorepos
|
||||||
|
# working-directory: somedir
|
||||||
|
|
||||||
|
# Optional: golangci-lint command line arguments.
|
||||||
|
# args: --issues-exit-code=0
|
||||||
|
|
||||||
|
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
||||||
|
# only-new-issues: true
|
||||||
|
|
||||||
|
# Optional: if set to true then the action will use pre-installed Go.
|
||||||
|
# skip-go-installation: true
|
||||||
|
|
||||||
|
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
|
||||||
|
# skip-pkg-cache: true
|
||||||
|
|
||||||
|
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
|
||||||
|
# skip-build-cache: true
|
||||||
|
-
|
||||||
|
name: Test, Build
|
||||||
|
id: lint_test_build
|
||||||
|
run: V=1 make ci
|
||||||
|
-
|
||||||
|
name: Codecov
|
||||||
uses: codecov/codecov-action@v1.2.1
|
uses: codecov/codecov-action@v1.2.1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
||||||
|
|
Loading…
Add table
Reference in a new issue