mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Replace Travis CI with GitHub Actions (#1688)
This commit is contained in:
parent
e2c0f23ce1
commit
cef2f6bb77
20
.github/workflows/build.yml
vendored
Normal file
20
.github/workflows/build.yml
vendored
Normal file
|
@ -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 ..
|
Loading…
Reference in New Issue
Block a user