Skip to content

Commit caced3b

Browse files
committed
.github: add dependabot
1 parent db04491 commit caced3b

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed
Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,18 @@ on: [push, pull_request]
22
name: Test
33
jobs:
44
test:
5-
strategy:
6-
matrix:
7-
go-version: [1.15.x, 1.16.x]
8-
os: [ubuntu-latest]
9-
runs-on: ${{ matrix.os }}
5+
runs-on: ubuntu-latest
106
steps:
117
- name: Install Go
128
uses: actions/setup-go@v2
139
with:
14-
go-version: ${{ matrix.go-version }}
10+
go-version: 1.16.x
1511
- name: Checkout code
1612
uses: actions/checkout@v2
17-
- name: Test and coverage
13+
- name: Test
1814
run: |
1915
go test -coverprofile coverage.txt
2016
go test -tags bitstring_debug .
17+
GOARCH=mips go test
2118
- name: Codecov
2219
run: bash <(curl -s https://codecov.io/bash)

.github/workflows/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"

0 commit comments

Comments
 (0)