From 70a816702281714dc5ad0db9ef83a7ee9d8b1091 Mon Sep 17 00:00:00 2001 From: long2ice Date: Wed, 22 Apr 2020 11:28:05 +0800 Subject: [PATCH] update workflows --- .github/{workflow => workflows}/gh-pages.yml | 0 .github/workflows/main.yml | 33 -------------------- .github/{workflow => workflows}/pypi.yml | 0 3 files changed, 33 deletions(-) rename .github/{workflow => workflows}/gh-pages.yml (100%) delete mode 100644 .github/workflows/main.yml rename .github/{workflow => workflows}/pypi.yml (100%) diff --git a/.github/workflow/gh-pages.yml b/.github/workflows/gh-pages.yml similarity index 100% rename from .github/workflow/gh-pages.yml rename to .github/workflows/gh-pages.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index d6783e2..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -# 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: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # 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@v2 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. diff --git a/.github/workflow/pypi.yml b/.github/workflows/pypi.yml similarity index 100% rename from .github/workflow/pypi.yml rename to .github/workflows/pypi.yml