diff options
| author | 2024-09-28 08:39:49 -0500 | |
|---|---|---|
| committer | 2024-09-28 08:39:49 -0500 | |
| commit | 652960c3dfba495a41a2ce933a18ba5b8ef3999b (patch) | |
| tree | a7183aae97e50a3fdd74493d0ca738f5865bb2f3 /.github/workflows | |
| parent | Test with lastest master Janet AND latest release on posix. (diff) | |
Different way of referencing tags.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a57517..c0aaa40 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test on: push: - branches: [ master, msvc-detect ] + branches: [ master ] pull_request_target: branches: [ master ] @@ -13,14 +13,14 @@ jobs: strategy: matrix: os: [ ubuntu-latest, macos-latest, macos-13 ] - janet-version: [ master, v1.36.0 ] + janet-version: [ heads/master, tags/v1.36.0 ] steps: - name: Checkout Janet uses: actions/checkout@v4 with: repository: janet-lang/janet path: janet - ref: refs/heads/${{ matrix.janet-version }} + ref: refs/${{ matrix.janet-version }} - name: Build Janet run: cd janet && make clean && make && make test - name: Install Janet |
