Skip to content

Commit

Permalink
Replace Travis CI with GitHub Actions (isocpp#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panquesito7 authored Dec 17, 2020
1 parent e2c0f23 commit cef2f6b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Install Hunspell
run: |
sudo apt-get update
sudo apt-get install hunspell
- name: Run cd scripts; make -k
run: cd scripts; make -k

- name: Run cd ..
run: cd ..

0 comments on commit cef2f6b

Please sign in to comment.