Skip to content

Commit

Permalink
Merge pull request #495 from hugovk/gha-hello
Browse files Browse the repository at this point in the history
Hello world to demo GHA
  • Loading branch information
graingert committed Sep 21, 2021
2 parents ec344d8 + b25afc7 commit 88a062a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,26 @@
name: Test

on: [push, pull_request, workflow_dispatch]

env:
FORCE_COLOR: 1

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Hello world
run: |
echo "hello world"

0 comments on commit 88a062a

Please sign in to comment.