Detect Depends #1
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
# Copyright 2024, MCSL Team, mailto:[email protected] | |
# | |
# Part of "MCSL2", a simple and multifunctional Minecraft server launcher. | |
# | |
# Licensed under the GNU General Public License, Version 3.0, with our | |
# additional agreements. (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://github.com/MCSLTeam/MCSL2/raw/master/LICENSE | |
# | |
################################################################################ | |
name: Detect Depends | |
on: workflow_dispatch | |
permissions: write-all | |
jobs: | |
Windows: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Setup PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: 3.8 | |
architecture: x64 | |
cache: true | |
- name: Dependencies | |
run: | | |
pdm install --no-self -dev |