Skip to content

Commit 2f70a9d

Browse files
datapythonistaMateusz Górski
authored and
Mateusz Górski
committed
CI: Forcing GitHub actions to activate (pandas-dev#29661)
1 parent 428a96b commit 2f70a9d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/activate.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Simple first task to activate GitHub actions.
2+
# This won't run until is merged, but future actions will
3+
# run on PRs, so we can see we don't break things in more
4+
# complex actions added later, like real builds.
5+
#
6+
# TODO: Remove this once another action exists
7+
name: Activate
8+
9+
on:
10+
push:
11+
branches: master
12+
pull_request:
13+
branches: master
14+
15+
jobs:
16+
activate:
17+
name: Activate actions
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Activate
21+
run: echo "GitHub actions ok"

0 commit comments

Comments
 (0)