17 lines
376 B
YAML
17 lines
376 B
YAML
name: Test CI
|
|
on: [push]
|
|
|
|
jobs:
|
|
build_and_test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: create file
|
|
run: |
|
|
echo HIsmth > a
|
|
- name: Archive production artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: dist-without-markdown
|
|
path: a |