Skip to content

Commit db8e5c6

Browse files
datapythonistaproost
authored andcommitted
CI: Forcing GitHub actions to activate (pandas-dev#29661)
1 parent eba95f6 commit db8e5c6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/activate.yml

+21
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)