Merge remote-tracking branch 'benma/deps' #2620
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See reference docs at | |
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: Default branch ci | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
linux-docker: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Clone the repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Pull CI container image | |
run: ./.ci/run-container-ci pull | |
- name: Run CI in container | |
run: ./.ci/run-container-ci ${{github.workspace}} |