Skip to content

Test against latest release and main #258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Test against latest release and main
  • Loading branch information
Tomperez98 committed May 14, 2025
commit dc1bd4347428b9f03b34a4396d35960be7216de7
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.12", "3.13"]
server-version: ["main", "latest"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -52,11 +53,20 @@ jobs:
with:
go-version: "1.23.0"

- name: Get latest Resonate release tag (if needed)
if: matrix.server-version == 'latest'
id: get-resonate-tag
run: |
LATEST_TAG=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
https://api.github.com/repos/resonatehq/resonate/releases/latest | jq -r .tag_name)
echo "tag=$LATEST_TAG" >> $GITHUB_OUTPUT

- name: checkout resonate repository
uses: actions/checkout@v4
with:
repository: resonatehq/resonate
path: server
ref: ${{ matrix.server-version == 'latest' && steps.get-resonate-tag.outputs.tag || 'main' }}

- name: build resonate
run: go build -o resonate
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading