Skip to content

Commit ae7f041

Browse files
committed
Run CI on the main branch as well
1 parent d79910f commit ae7f041

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build Python wheels
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
tags: "*"
77
pull_request:
88
# Check all PR

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Documentation
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
tags: ["*"]
77
pull_request:
88
# Check all PR

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
# Check all PR
88

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sphericart
22

3-
![tests](https://github.com/lab-cosmo/sphericart/actions/workflows/tests.yml/badge.svg)
3+
[![Test](https://github.com/lab-cosmo/sphericart/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/lab-cosmo/sphericart/actions/workflows/tests.yml)
44

55
This is sphericart, a multi-language library for the efficient calculation of the
66
spherical harmonics and their derivatives in Cartesian coordinates.
@@ -56,15 +56,15 @@ The following cmake configuration options are available:
5656

5757
### Running tests and documentation
5858

59-
Tests and the local build of the documentation can be run with `tox`.
59+
Tests and the local build of the documentation can be run with `tox`.
6060
The default tests, which are also run on the CI, can be executed by simply running
6161
```bash
6262
tox
6363
```
64-
in the main folder of the repository.
64+
in the main folder of the repository.
6565

6666
To run tests in a CPU-only environment you can set the environment variable
67-
`PIP_EXTRA_INDEX_URL` before calling tox, e.g.
67+
`PIP_EXTRA_INDEX_URL` before calling tox, e.g.
6868
```bash
6969
PIP_EXTRA_INDEX_URL=https://download.pytorch.org/whl/cpu tox -e docs
7070
```

0 commit comments

Comments
 (0)