Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the latest setup beam for Github action #256

Merged
merged 1 commit into from Apr 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
Expand Down
12 changes: 7 additions & 5 deletions README.md
Expand Up @@ -65,6 +65,7 @@ end

# Usage
## Mix Tasks
- [ExCoveralls](#excoveralls)
- [Settings](#settings)
- [mix.exs](#mixexs)
- [Usage](#usage)
Expand All @@ -73,7 +74,7 @@ end
- [[mix coveralls.travis] Post coverage from travis](#mix-coverallstravis-post-coverage-from-travis)
- [.travis.yml](#travisyml)
- [[mix coveralls.github] Post coverage from GitHub Actions](#mix-coverallsgithub-post-coverage-from-github-actions)
- [.github/workflows/main.yml](#githubworkflowsexampleyml)
- [.github/workflows/example.yml](#githubworkflowsexampleyml)
- [[mix coveralls.circle] Post coverage from circle](#mix-coverallscircle-post-coverage-from-circle)
- [circle.yml](#circleyml)
- [[mix coveralls.semaphore] Post coverage from semaphore](#mix-coverallssemaphore-post-coverage-from-semaphore)
Expand All @@ -90,9 +91,10 @@ end
- [Exclude Files](#exclude-files)
- [Terminal Report Output](#terminal-report-output)
- [Coverage Options](#coverage-options)
- [Ignore Lines](#ignore-lines)
- [Notes](#notes)
- [Todo](#todo)
- [Ignore Lines](#ignore-lines)
- [Notes](#notes)
- [Todo](#todo)
- [License](#license)

### [mix coveralls] Show coverage
Run the `MIX_ENV=test mix coveralls` command to show coverage information on localhost.
Expand Down Expand Up @@ -215,7 +217,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v1.0.0
- uses: actions/setup-elixir@v1.0.0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
Expand Down