diff options
| author | dundargoc <gocdundar@gmail.com> | 2023-11-30 12:05:13 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-01 16:59:23 +0100 |
| commit | ce6fefbab9b6a902e725534c91ba3aa1025e5957 (patch) | |
| tree | e9e5945ca27c79e9638f4cd4de23be63877875e0 /.github/workflows/api-docs.yml | |
| parent | 76a30f2bd0f4e5abe906eabcdce092931d712be3 (diff) | |
| download | rneovim-ce6fefbab9b6a902e725534c91ba3aa1025e5957.tar.gz rneovim-ce6fefbab9b6a902e725534c91ba3aa1025e5957.tar.bz2 rneovim-ce6fefbab9b6a902e725534c91ba3aa1025e5957.zip | |
ci: create setup action
This deduplicates common operations.
Diffstat (limited to '.github/workflows/api-docs.yml')
| -rw-r--r-- | .github/workflows/api-docs.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml index 6f8fe107d2..181e3a1a41 100644 --- a/.github/workflows/api-docs.yml +++ b/.github/workflows/api-docs.yml @@ -18,11 +18,11 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v4 + - uses: ./.github/actions/setup + - name: Install dependencies run: | - ./.github/scripts/install_deps.sh sudo apt-get install -y doxygen python3-msgpack - - uses: ./.github/actions/cache - name: Generate docs run: | |