Skip to content

Commit

Permalink
docs: add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
marrip committed Feb 27, 2024
1 parent 6377f43 commit 34d473e
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,32 @@ A two-day workshop for bioinformaticians and molecular biologists with focus on

---

- github actions (linting, testing, building)
## 2. Development & Collaboration

### GitHub Actions

- continuous integration (CI) and continuous deployment (CD)
- building, testing and deploying directly from GitHub
- set up by adding yaml instructions to `.github/workflows`

---

### GitHub Actions

#### example

```yaml
name: GitHub Actions Demo
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "Hello world!"
```
---
- pull requests (best practice)
- release and semantic versioning
- licensing
Expand All @@ -209,6 +234,7 @@ A two-day workshop for bioinformaticians and molecular biologists with focus on
- [About Git](https://docs.github.com/en/get-started/using-git/about-git)
- [Gitflow workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)
- [GitHub Actions](https://docs.github.com/en/actions/quickstart)
---
Expand Down

0 comments on commit 34d473e

Please sign in to comment.