Skip to content

Commit

Permalink
Adds badge & workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
t0xicCode committed Aug 3, 2021
1 parent e44c17d commit 55be118
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Build & Release Binaries

on:
release:
types: [created]
Expand Down
38 changes: 20 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
on: [push, pull_request]
name: CI Tests

jobs:
test:
name: Test Go Packages
runs-on: ubuntu-latest
strategy:
matrix:
goversion: ["1.16.x"]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.goversion }}
- name: Run Tests
run: |
go test ./...
on: [push, pull_request]

jobs:
test:
name: Test Go Packages
runs-on: ubuntu-latest
strategy:
matrix:
goversion: ["1.16.x"]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.goversion }}
- name: Run Tests
run: |
go test ./...
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# add-ca-certificates

[![.github/workflows/test.yml](https://github.com/MagnaXSoftware/add-ca-certificates/actions/workflows/test.yml/badge.svg)](https://github.com/MagnaXSoftware/add-ca-certificates/actions/workflows/test.yml)

`add-ca-certificates` updates the _ca-certificates.crt_ bundle, often located at _/etc/ssl/certs/ca-certificates.crt_ on linux distributions.

Contrary to `update-ca-certificates`, which can remove CA certificates from the bundle, `add-ca-certificates` only ever **adds** new certificates to the bundle.
Expand Down

0 comments on commit 55be118

Please sign in to comment.