diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-22 10:04:20 +0900 |
|---|---|---|
| committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-22 10:04:20 +0900 |
| commit | d1c4bee528ec9a652c513f6888df02d54dd25e37 (patch) | |
| tree | 7688566e485077d68679e7c0a1d11b99c94ae27e /.github | |
| parent | Merge pull request #128 from h-michael/rust-analyzer (diff) | |
| download | nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.tar nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.tar.gz nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.tar.bz2 nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.tar.lz nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.tar.xz nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.tar.zst nvim-lspconfig-d1c4bee528ec9a652c513f6888df02d54dd25e37.zip | |
gh actions: Add Dart lang to docgen action enviroment
fix: #139
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/docgen.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 78ccdf6c..1a19c7dc 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -7,6 +7,13 @@ jobs: runs-on: [ubuntu-latest] if: github.ref != 'master' steps: + - name: Setup Dart + run: | + sudo apt install apt-transport-https + sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' + sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' + sudo apt update + sudo apt install dart - uses: actions/checkout@v1 - run: date +%F > todays-date - name: Restore cache for today's nightly. |
