Skip to content

Commit

Permalink
first try
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawnXuan committed Nov 9, 2023
1 parent 1811f85 commit 949aad4
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
Binary file added .github/workflows/.test.yml.swp
Binary file not shown.
53 changes: 53 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Build and Test CI
on:
pull_request:
types: [opened, review_requested, ready_for_review, synchronize, unlocked]
merge_group:
types: [checks_requested]
workflow_call:
inputs:
is_priv:
required: true
type: boolean
branch:
required: false
type: string
default: "main"

concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true

env:
CO_MODELS_SRC: CoModels

jobs:
test_job:
name: Collect information about PR and source
#runs-on: ${{ matrix.runs-on }} # todo
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false && github.base_ref == 'main'
steps:
- name: Check out CoModels
uses: actions/checkout@v4
with:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{ github.event.pull_request.head.sha }}
path: ${{ env.CO_MODELS_SRC}}

- name: Set up PR model name
id: pr
run: |
echo "::set-output name=model::$(echo ${github.event.pull_request.title})"
#- name: Prepare directories
# run: |
# rel_path="target_dir/${{ steps.pr.outputs.branch }}"
# mkdir -p $rel_path
# cp -rL $rel_path standalone-dir/
#- name: Run script
# run: |
# cd standalone-dir/
# bash run.sh

0 comments on commit 949aad4

Please sign in to comment.