Skip to content

Commit

Permalink
Merge pull request #897 from spacewander/ga
Browse files Browse the repository at this point in the history
ci: move to GitHub Action
  • Loading branch information
spacewander authored Dec 14, 2020
2 parents e6caa93 + faa56b1 commit 4c82bbe
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 14 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
platform:
- ubuntu-18.04
- macos-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Check out code.
uses: actions/checkout@v1
- name: Linux Install
if: matrix.platform == 'ubuntu-18.04'
run: |
sudo apt-get install -y bsdmainutils
- name: Script
run: |
./check_integrity.sh $(find bin | cut -b 5- | xargs)
- name: Brew release
if: matrix.platform == 'macos-latest'
run: |
mkdir ../release && git archive --format=tar.gz HEAD > ../release/git-extras-release.tar.gz
cd ../release
tar -xzf git-extras-release.tar.gz && make PREFIX=$(pwd) INSTALL_VIA=brew
./bin/git-extras update | grep "brew upgrade git-extras"
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit 4c82bbe

Please sign in to comment.