Skip to content

Commit

Permalink
Simplify path
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Dec 16, 2024
1 parent 39bdcac commit 13f1236
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
path: repo-src
ref: ${{ inputs.ref || (github.event.number && format('refs/pull/{0}/merge', github.event.number)) }}

- name: Configure Build Matrix
Expand All @@ -55,7 +54,7 @@ jobs:
// Use ENABLE_SELF_HOSTED to decide what the build matrix below
// should include.
const buildMatrix = JSON.parse(fs.readFileSync("${{ github.workspace }}/repo-src/build-matrix.json"));
const buildMatrix = JSON.parse(fs.readFileSync("${{ github.workspace }}/build-matrix.json"));
const {hosted, selfHosted, pythonVersions} = buildMatrix;
const devices = enableSelfHosted ? hosted.concat(selfHosted) : hosted;
Expand Down

0 comments on commit 13f1236

Please sign in to comment.