mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
0ba521f002
Bumps [Steffo99/actions-poetry-deps](https://github.com/Steffo99/actions-poetry-deps) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/Steffo99/actions-poetry-deps/releases) - [Commits](https://github.com/Steffo99/actions-poetry-deps/compare/v0.2.4...v0.2.5) --- updated-dependencies: - dependency-name: Steffo99/actions-poetry-deps dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
843 B
YAML
42 lines
843 B
YAML
name: "Test suite"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- master
|
|
workflow_call:
|
|
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
compileall:
|
|
name: "🧪 Test package using compileall"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "⬇️ Checkout repository"
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "🔨 Setup Python"
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: "🔨 Setup Poetry"
|
|
uses: abatilo/actions-poetry@v2.2.0
|
|
|
|
- name: "🔨 Setup Poetry Python environment"
|
|
id: pyenv
|
|
uses: Steffo99/actions-poetry-deps@v0.2.5
|
|
|
|
- name: "🧪 Run check"
|
|
run: |
|
|
source ${{ steps.pyenv.outputs.pyenv }}/activate
|
|
python -m compileall royalpack
|