Skip to content
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

chore(ci): Update Rust versions in CI to 1.74, 1.78, and 1.79 #108

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 commits
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
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
on: push
on:
push:
branches: [ "master" ]
pull_request:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any particular reason to only run these on master?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any particular reason to only run these on master?

No, I just thought it would be nice to let actions only run on importance branches like master. But maybe better to keep the original behavior 14c5816

branches: [ "master" ]

name: Run tests
jobs:
# The `ci-result` job doesn't actually test anything - it just aggregates the
Expand Down Expand Up @@ -35,10 +40,10 @@ jobs:
# giving us about 6 months of coverage.
#
# Minimum supported rust version (MSRV)
- "georust/geo-ci:rust-1.67"
- "ghcr.io/georust/geo-ci:proj-9.4.0-rust-1.74"
# Two most recent releases - we omit older ones for expedient CI
- "georust/geo-ci:rust-1.69"
- "georust/geo-ci:rust-1.70"
- "ghcr.io/georust/geo-ci:proj-9.4.0-rust-1.78"
- "ghcr.io/georust/geo-ci:proj-9.4.0-rust-1.79"
container:
image: ${{ matrix.container_image }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CHANGELOG

## Unreleased

- [#108](https://github.com/georust/gpx/pull/108): Update MSRV to 1.77.
v0y4g3r marked this conversation as resolved.
Show resolved Hide resolved
- [#101](https://github.com/georust/gpx/pull/101): Write speed to GPX 1.0 files

## 0.10.0
Expand Down
Loading