From c05afb470523a76cbfce62b575074eb705ca4cdf Mon Sep 17 00:00:00 2001 From: infogulch Date: Sat, 24 Jun 2023 13:05:57 -0500 Subject: [PATCH 1/2] Fix tags trigger --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87a3331b..f79952bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,12 +1,14 @@ name: CI + on: push: branches: [master] + tags: + - "v**" pull_request: schedule: - cron: '0 0 * * 3' # At 12:00 AM, only on Wednesday - label: - types: [created, edited] + workflow_dispatch: jobs: build-test: From e52a4fbfc008ab0f6e4cf9e999ec1d0e827b7925 Mon Sep 17 00:00:00 2001 From: infogulch Date: Sat, 24 Jun 2023 13:21:42 -0500 Subject: [PATCH 2/2] Bump msrv to 1.65 due to bumping rug to 1.19 https://gitlab.com/tspiteri/rug#version-1190-news-2023-01-06 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f79952bd..24fb4b81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - { os: windows-latest, rust-version: stable, shell: 'msys2 {0}' } - { os: macos-11, rust-version: stable, shell: bash } - { os: ubuntu-20.04, rust-version: stable, shell: bash, extra: true } - - { os: ubuntu-20.04, rust-version: 1.63, shell: bash } + - { os: ubuntu-20.04, rust-version: 1.65, shell: bash } - { os: ubuntu-20.04, rust-version: beta, shell: bash } - { os: ubuntu-20.04, rust-version: nightly, shell: bash } defaults: