From: Alessandro Pio Ardizio Date: Sun, 19 Jan 2020 16:16:56 +0000 (+0100) Subject: Create main.yml X-Git-Tag: v0.0.1~37 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=ec8d1fd4a370c7b38be56c73ca0123ea5d3a652f;p=poolifier.git Create main.yml --- diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..b2340b24 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Run a one-line script + run: echo Hello, world! + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.