Skip to content

Commit

Permalink
chore(ci): switch from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Apr 1, 2021
1 parent a98ec12 commit 727f876
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Code Style

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- name: switch base docker image
run: sed -i -e 's|FROM archlinux/base|FROM actionless/pikaur|' Dockerfile

- name: build docker image
run: docker image build ./ -t oomoxify

- name: run tests in docker
run: docker run --entrypoint ./shellcheck.sh oomoxify:latest
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 727f876

Please sign in to comment.