-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [ ] Have you followed the [guidelines for contributing](https://github.com/snapcore/snapcraft/blob/master/CONTRIBUTING.md)? - [ ] Have you signed the [CLA](http://www.ubuntu.com/legal/contributors/)? - [ ] Have you successfully run `tox run -m lint`? - [ ] Have you successfully run `tox run -e test-py310`? (supported versions: `py39`, `py310`, `py311`, `py312`) ----- - new tox target for a single coverage result for an easier TiCS workflow - Run TiCS on pushes to main --------- Signed-off-by: Sergio Schvezov <sergio.schvezov@canonical.com>
- Loading branch information
1 parent
a6047cd
commit 69b5948
Showing
2 changed files
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: TICS | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
CI: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
echo "::group::apt-get update" | ||
sudo apt-get update | ||
echo "::endgroup::" | ||
echo "::group::apt-get install..." | ||
sudo apt-get install -y libapt-pkg-dev libyaml-dev xdelta3 patchelf | ||
echo "::endgroup::" | ||
echo "::group::pip install" | ||
python -m pip install 'tox<5.0' tox-gh | ||
echo "::endgroup::" | ||
- name: Setup Tox environment | ||
run: tox run-parallel --parallel auto --parallel-no-spinner --parallel-live --colored yes -e test-all-py310 --notest | ||
|
||
- name: Test with tox | ||
run: tox run --skip-pkg-install --result-json results/tox-py310.json --colored yes -e test-all-py310 | ||
|
||
- name: Run TICS analysis | ||
uses: tiobe/tics-github-action@v3 | ||
with: | ||
mode: qserver | ||
project: snapcraft | ||
viewerUrl: https://canonical.tiobe.com/tiobeweb/TICS/api/cfg?name=default | ||
ticsAuthToken: ${{ secrets.TICSAUTHTOKEN }} | ||
installTics: true |
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