Skip to content

Commit

Permalink
remove un-owned repo for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Dec 26, 2023
1 parent 0225d1e commit e7fb08e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ on:
- "main"

jobs:
check_skip:
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.result_step.outputs.ci-skip }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: result_step
uses: mstachniuk/ci-skip@master
with:
commit-filter: '[skip ci];[ci skip];[skip github]'
commit-filter-separator: ';'
# check_skip:
# runs-on: ubuntu-latest
# outputs:
# skip: ${{ steps.result_step.outputs.ci-skip }}
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - id: result_step
# uses: mstachniuk/ci-skip@master
# with:
# commit-filter: '[skip ci];[ci skip];[skip github]'
# commit-filter-separator: ';'

latest:
needs: check_skip
# needs: check_skip
if: ${{ needs.check_skip.outputs.skip == 'false' }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -78,12 +78,12 @@ jobs:
$GITHUB_WORKSPACE/build_tools/github/test.sh
working-directory: ${{ runner.temp }}
name: 'Run tests'
- uses: codecov/codecov-action@v3
with:
directory: ${{ runner.temp }}
verbose: true
if: success()
name: 'Upload coverage to CodeCov'
# - uses: codecov/codecov-action@v3
# with:
# directory: ${{ runner.temp }}
# verbose: true
# if: success()
# name: 'Upload coverage to CodeCov'

run_nightly:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion cu_cat/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.07.02
0.07.03
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# if __name__ == "__main__":
setup(
name='cu-cat',
version='v0.07.02',
version='v0.07.03',
# cmdclass=versioneer.get_cmdclass(),
# packages = find_packages(),
platforms='any',
Expand Down

0 comments on commit e7fb08e

Please sign in to comment.