Skip to content

Commit

Permalink
switch CI from Travis CI to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmitch committed Dec 17, 2023
1 parent 32040fb commit f47242c
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# see https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Tests
on:
push:
pull_request:
types: [opened]
schedule:
- cron: '16 19 24 * *'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run tests
run: cd test && ./run-tests.sh
- name: shellcheck
uses: ludeeus/action-shellcheck@2.0.0
with:
scandir: '.'
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dns-update
==========

[![Build Status](https://travis-ci.org/mmitch/dns-update.svg?branch=master)](https://travis-ci.org/mmitch/dns-update)
[![Build status](https://github.com/mmitch/dns-update/workflows/Tests/badge.svg)](https://github.com/mmitch/dns-update/actions?query=workflow%3ATests)
[![GPL 3+](https://img.shields.io/badge/license-GPL%203%2B-blue.svg)](http://www.gnu.org/licenses/gpl-3.0-standalone.html)

* dns-update - small dynamic DNS suite using SSH
Expand Down

0 comments on commit f47242c

Please sign in to comment.