From 6388f32337b690cab0df1fe87955e38e1e9783e7 Mon Sep 17 00:00:00 2001 From: Ivet Galabova Date: Wed, 8 Jan 2025 11:42:55 +0000 Subject: [PATCH] two workflows added, to automate extra-tests --- .github/workflows/coverage.yml | 1 + .github/workflows/extra-tests.yml | 29 +++++++++++++++++++++++++++++ actions/workflows/coverage.yml | 19 +++++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 .github/workflows/coverage.yml create mode 100644 .github/workflows/extra-tests.yml create mode 100644 actions/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..8b68f79 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1 @@ +#todo \ No newline at end of file diff --git a/.github/workflows/extra-tests.yml b/.github/workflows/extra-tests.yml new file mode 100644 index 0000000..4c4ec59 --- /dev/null +++ b/.github/workflows/extra-tests.yml @@ -0,0 +1,29 @@ +name: extra-tests + +on: [push, pull_request] + +jobs: + release: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + + steps: + - uses: actions/checkout@v4 + + - name: Checkout HiGHS repo + uses: actions/checkout@v4 + with: + repository: ERGO-Code/HiGHS + path: HiGHS + + - name: Checkout highs-unit-tests repo + uses: actions/checkout@v4 + with: + repository: galabovaa/highs-unit-tests + path: highs-unit-tests + + - name: ls HiGHS + working-directory: HiGHS + run: ls -a \ No newline at end of file diff --git a/actions/workflows/coverage.yml b/actions/workflows/coverage.yml new file mode 100644 index 0000000..5ef729d --- /dev/null +++ b/actions/workflows/coverage.yml @@ -0,0 +1,19 @@ +#todo +# test + +name: actions-coverage + +on: [push, pull_request] + +jobs: + release: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + + steps: + - uses: actions/checkout@v4 + + - name: Run ls + run: ls -a \ No newline at end of file