mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-29 11:00:31 +00:00
18 lines
262 B
YAML
18 lines
262 B
YAML
name: Push to main branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test
|
|
run: |
|
|
cat README.md && cat version.json
|