Addons for release and publication #2
Workflow file for this run
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
# .github/workflows/galaxy-importer.yml | |
# Its role is to performe the same checks that would be performed when publishing to galaxy | |
# Running them earlier helps to detect issues locally | |
name: galaxy-importer | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
galaxy-importer: | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Set up venv | |
run: | | |
python -m pip install --upgrade pip | |
pip install virtualenv | |
mkdir venv | |
virtualenv venv/venv-2.16 | |
- name: Install dependencies | |
run: | | |
source venv/venv-2.16/bin/activate | |
python -m pip install --upgrade pip | |
pip install ansible | |
pip install ansible-importer | |
pip install galaxy-importer | |
- name: Run ac-galaxy-importer | |
run: | | |
source venv/venv-2.16/bin/activate | |
./ac --ac-galaxy-importer |