* Bump super-linter/super-linter from 5 to 6 Bumps [super-linter/super-linter](https://github.com/super-linter/super-linter) from 5 to 6. - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/super-linter/super-linter/compare/v5...v6) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update linter.yml * Update codeql-analysis.yml * Update functional.yml * Update release --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rimo <4203620+yizhoumo@users.noreply.github.com>
25 lines
593 B
YAML
25 lines
593 B
YAML
name: Functional
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * 6'
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
functional:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
version: [1.7.15, latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: yizhoumo/setup-ossutil@v2
|
|
with:
|
|
ossutil-version: ${{ matrix.version }}
|
|
endpoint: ${{ secrets.OSS_ENDPOINT }}
|
|
access-key-id: ${{ secrets.OSS_ACCESS_KEY_ID }}
|
|
access-key-secret: ${{ secrets.OSS_ACCESS_KEY_SECRET }}
|
|
- run: ossutil -v
|
|
- run: ossutil ls > /dev/null
|
|
shell: bash
|