diff options
author | Li Jin <dragon-fly@qq.com> | 2020-03-25 00:45:37 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-03-25 00:45:37 +0800 |
commit | 8d0e3b1a4a3185b7f1879b4c8ca58715b05b8822 (patch) | |
tree | 3ab6f9c07c5a0ee0b88e06350b703d425ded0548 /.github/workflows | |
parent | d04b23b9a47c2ec6631aec16dc79f5b803fe07f3 (diff) | |
download | yuescript-8d0e3b1a4a3185b7f1879b4c8ca58715b05b8822.tar.gz yuescript-8d0e3b1a4a3185b7f1879b4c8ca58715b05b8822.tar.bz2 yuescript-8d0e3b1a4a3185b7f1879b4c8ca58715b05b8822.zip |
fix CI build.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ccpp.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 5b8c191..9bc8efd 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml | |||
@@ -6,8 +6,11 @@ jobs: | |||
6 | build: | 6 | build: |
7 | 7 | ||
8 | runs-on: ubuntu-latest | 8 | runs-on: ubuntu-latest |
9 | 9 | ||
10 | steps: | 10 | steps: |
11 | - uses: actions/checkout@v1 | 11 | - uses: actions/checkout@v1 |
12 | - name: Update g++ | ||
13 | run: sudo apt -y install g++-8 | ||
12 | - name: Test | 14 | - name: Test |
13 | run: make test | 15 | run: make test |
16 | |||