# This is a basic workflow to help you get started with Actions name: Test # Controls when the workflow will run on: # Triggers the workflow on push or pull request events but only for the devel branch push: branches: [ devel ] pull_request: branches: [ devel ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" build: strategy: fail-fast: false matrix: os: [ubuntu-latest] # [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.10"] # ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"] # The type of runner that the job will run on runs-on: ${{ matrix.os }} # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} # Runs a single command using the runner's Python - name: Run a one-line script shell: python run: print("Hello, world!") # Runs a set of commands using the runner's shell - name: Run a multi-line script run: | echo Add other actions to build, echo test, and deploy your project.