Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
Point to reusable workflows in `master` so that `codecov` branch can be deleted.
  • Loading branch information
lhstrh committed Jan 9, 2022
1 parent 898005f commit be9e603
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
# Run the unit tests.
unit-tests:
uses: lf-lang/lingua-franca/.github/workflows/unit-tests.yml@codecov
uses: lf-lang/lingua-franca/.github/workflows/unit-tests.yml@master

# Run tests for the standalone compiler.
cli-tests:
Expand All @@ -32,11 +32,11 @@ jobs:

# Run the C integration tests.
c-tests:
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@codecov
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@master

# Run the CCpp integration tests.
ccpp-tests:
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@codecov
uses: lf-lang/lingua-franca/.github/workflows/c-tests.yml@master
with:
use-cpp: true

Expand All @@ -46,15 +46,15 @@ jobs:

# Run the C++ integration tests.
cpp-tests:
uses: lf-lang/lingua-franca/.github/workflows/cpp-tests.yml@codecov
uses: lf-lang/lingua-franca/.github/workflows/cpp-tests.yml@master

# Run the Python integration tests.
py-tests:
uses: lf-lang/lingua-franca/.github/workflows/py-tests.yml@codecov
uses: lf-lang/lingua-franca/.github/workflows/py-tests.yml@master

# Run the Rust integration tests.
rs-tests:
uses: lf-lang/lingua-franca/.github/workflows/rs-tests.yml@codecov
uses: lf-lang/lingua-franca/.github/workflows/rs-tests.yml@master

# Run the TypeScript integration tests.
ts-tests:
Expand Down

0 comments on commit be9e603

Please sign in to comment.