-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #410 from VanekPetr/dependabot/github_actions/cvxg…
…rp/dot-github-2.1.0 chore(deps): bump cvxgrp/.github from 2.0.7 to 2.1.0
- Loading branch information
Showing
4 changed files
with
24 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,14 @@ jobs: | |
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: '--verbose --all-files' | ||
- uses: cvxgrp/.github/actions/[email protected] | ||
|
||
deptry: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: cvxgrp/.github/actions/uv/[email protected] | ||
- name: "Build the virtual environment for ${{ github.repository }}" | ||
uses: cvxgrp/.github/actions/uv/[email protected] | ||
|
||
- uses: cvxgrp/.github/actions/[email protected] | ||
with: | ||
source-folder: 'funnel' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,17 @@ on: | |
- main | ||
|
||
jobs: | ||
build: | ||
tag: | ||
permissions: | ||
contents: write | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Bump version and push tag | ||
id: tag_version | ||
uses: mathieudutour/[email protected] | ||
- name: "Build the virtual environment for ${{ github.repository }}" | ||
uses: cvxgrp/.github/actions/uv/[email protected] | ||
|
||
- name: Generate Tag | ||
uses: cvxgrp/.github/actions/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create a GitHub release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: ${{ steps.tag_version.outputs.new_tag }} | ||
name: Release ${{ steps.tag_version.outputs.new_tag }} | ||
body: ${{ steps.tag_version.outputs.changelog }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "Build the virtual environment for ${{ github.repository }}" | ||
uses: cvxgrp/.github/actions/uv/[email protected] | ||
|
||
- uses: cvxgrp/.github/actions/uv/coverage@v2.0.7 | ||
- uses: cvxgrp/.github/actions/coverage@v2.1.0 | ||
with: | ||
source-folder: 'funnel' | ||
|
||
- name: Coveralls GitHub Action | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
files: artifacts/tests/coverage/coverage.info | ||
format: lcov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,16 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, windows-latest, macos-latest ] | ||
os: [ ubuntu-latest, macos-latest ] | ||
python-version: ['3.10', '3.11', '3.12', '3.13' ] | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: cvxgrp/.github/actions/uv/[email protected] | ||
- name: "Build the virtual environment for ${{ github.repository }}" | ||
uses: cvxgrp/.github/actions/uv/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: cvxgrp/.github/actions/[email protected] | ||
with: | ||
source-folder: 'funnel' |