Skip to content

Commit

Permalink
two workflows added, to automate extra-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
galabovaa committed Jan 8, 2025
1 parent b839ec0 commit 6388f32
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#todo
29 changes: 29 additions & 0 deletions .github/workflows/extra-tests.yml
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions actions/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6388f32

Please sign in to comment.